How to run MATLAB backstage
조회 수: 2 (최근 30일)
이전 댓글 표시
I have 2 programs:
1. A Fortran program which does a lot of calculations using intel compiler and Visual studio 2013, Windows 10. It generates a dataintomatlab.dat file as an input for the MATLAB program and recevies a dataoutmatlab.dat file from MATLAB.
2. MATLAB m.file which loads dataintomatlab.dat and save data as dataoutmatlab.dat as an input for the Fortran program.
The following code is used to link the Fortran program with MATLAB:
result_matlab = SYSTEMQQ("C:\PROGRA~1\MATLAB\R2019a\bin\matlab.exe" -wait -nodesktop -nosplash -r "my_mfile")
However, this is not efficient for large computations, because the MATLAB program has to be initiated and closed at each timestep, which takes a lot of time.
Is there any way to run MATLAB backstage without initiation and shut down every time and only make MATLAB do its work when it detects the dataintomatlab.dat is updated? Or is there a better solution to link the Fortran program with MATLAB?
Thanks in advance.
댓글 수: 1
Walter Roberson
2020년 4월 29일
Yes, there are possibilities. See https://www.mathworks.com/help/matlab/external-language-interfaces.html?s_tid=CRUX_lftnav
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Fortran with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!