To my knowledge there is no such command (yet) in QucsStudio. However there is a possibility to run SCH-s from, and return data to Octave.
%outfile=fullfile(‘”C:\Documents and Settings\zhu\qucs3\model_prj”‘,’model.dat’);
%outfile=fullfile(‘C:\Documents and Settings\zhu\qucs3\model_prj’,’model.dat’);
outfile=’model.dat’;
Neither of the commented lines work for resolving the problem of spaces in paths. Interestingly,
infile=fullfile(‘”C:\Documents and Settings\zhu\qucs3″‘,’netlist.txt’);
works for the input file.
There must exist a solution I do not know of.