how to run a .exe file from matlab
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
i want to call a spice simulator executable file to run a spice model and then generate a data file.i also want that data file to be called in the matlab for the compilation accordingly. then i can use this the result to plot the graps
2 Kommentare
Jan
am 5 Apr. 2014
What does thio mean:
...data file to be called in the matlab for the compilation accordingly
Antworten (2)
Image Analyst
am 5 Apr. 2014
You can put an exclamation point on the command line followed by the full path and name of your executable, or if you want to do it in a script of function, you can use the system() command. For example:
% Now run the Calibration Chart editor program.
% First construct the command line for the system() function.
% Enclose all filenames in double quotes because we may have spaces in the filenames.
arguments = sprintf('-chartfile "%s" -chartimage "%s"', fullRefChartDataFileName, bgCorrectedImageFileName);
commandLine = sprintf('"%s" %s', editorFullFileName, arguments);
fprintf('\n%s\n', commandLine);
%----------------------------------------------------------
% Now launch the Calibration Chart editor program using the "system()" function.
%msgboxw(commandLine);
system(commandLine);
0 Kommentare
Siehe auch
Kategorien
Mehr zu SPICE files finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!