필터 지우기
필터 지우기

how to run a .exe file from matlab

조회 수: 13 (최근 30일)
Siddharth Pande
Siddharth Pande 2014년 4월 5일
댓글: Siddharth Pande 2014년 4월 10일
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
Jan
Jan 2014년 4월 5일
What does thio mean:
...data file to be called in the matlab for the compilation accordingly
Siddharth Pande
Siddharth Pande 2014년 4월 10일
@jan simon it is a .dat file which will be generated automatically by the spice simulator

댓글을 달려면 로그인하십시오.

답변 (2개)

Azzi Abdelmalek
Azzi Abdelmalek 2014년 4월 5일

Image Analyst
Image Analyst 2014년 4월 5일
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);

카테고리

Help CenterFile Exchange에서 SPICE files에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by