Can't run external program

83 ビュー (過去 30 日間)
Paul Tartabini
Paul Tartabini 2016 年 12 月 9 日
コメント済み: Walter Roberson 2021 年 4 月 3 日
I have C program that I compiled and can run in a command window without a problem. I am trying to execute from the matlab command window using the ! operator:
>>!myprogram.exe
When I do this command, matlab seems to accept the line without an error, but the code is not executed. I have tried the system command (nothing happens but I get a returned results of -1.073741515000000e+09). If I execute system commands like !del junkfile.txt
the file gets deleted. But nothing happens when I run my external program. I have tried calling with the full path, but that does not work and I get the same behavior.
Would appreciate any help you can give,
- Paul
  4 件のコメント
Ajith Kumar Veeraboina
Ajith Kumar Veeraboina 2021 年 4 月 2 日
Hello Paul,
I am looking for solution to the exact same issue. Are you able to resolve it.
Walter Roberson
Walter Roberson 2021 年 4 月 3 日
-1073741511 is hex C0000139 which appears to correspond to the Windows error code for "Entry point not found" . That indicates that you either tried to execute something that was inherently not properly created (such as if you tried to directly execute a DLL that did not have a main program), or else that the program you executed tried to use a DLL that could not be found.

サインインしてコメントする。

回答 (5 件)

Philipp Krauter
Philipp Krauter 2018 年 12 月 30 日
The problem is that newer versions of Matlab are adding a folder to the Path environmental variable each time, the system() or dos() function are called. For me, removing this new path by calling
system('set path=%path:C:\Program Files\MATLAB\R2018b\bin\win64;=% & myprog.exe');
instead of
system('myprog.exe');
solves the problem.
Please note, that the folder to be removed from the environmental variable can differ. It can be read out using
system('path');
  3 件のコメント
isla ziyat
isla ziyat 2020 年 3 月 27 日
Thanks!
Dan
Dan 2021 年 3 月 17 日
Hey Philipp, thanks for your post. But I tried your method, there is still the matlab in the Path environmental variable, and the external program still could not run. I use MATLAB r2021a.

サインインしてコメントする。


Josh Philipson
Josh Philipson 2020 年 2 月 7 日
編集済み: Josh Philipson 2020 年 2 月 8 日
Hi, I think I may have found something potentially helpful.
I had a very similar issue, and just resolved it. In case it's relevant, I was using Intel's Fortran compiler in a Visual Studio project to build a fortran file. TLDR; The built EXE was trying to load some dll that it couldn't do from within MATLAB, but within native windows cmd window, or double-click, evidently it could load it.
The relevant bit was from the magician, "Ian H (blackbelt)", over at https://software.intel.com/en-us/forums/intel-fortran-compiler/topic/759093 who posted this bit:
  • You need to change the runtime library setting for your project within Visual Studio - the default within Visual Studio is to produce an executable that requires the Fortran runtime libraries.
  • Change to a Release configuration, then rIght click on your project in the solution explorer, select Properties, then in the Configuration Properties > Fortran > Libraries page change the Runtime Library option to "Multithreaded". Rebuild your project.
  • (If you use OpenMP within your project, then you will still have a dependency on some of the OpenMP DLL's.)
I sort of backed into this when I tried to run my compiled .exe on another PC that didn't have the same build environment setup, and it barfed on me indicating "libmmdd.dll" was not found. Additionally, I tried system('cmd &') to have Matlab open up a command window..and I found that one compiled version (i.e. via G77) worked, and the one I used Visual Studio for, didn't work!
From there I guess that it couldn't load that library in the MATLAB "system" scaffolding. I am not sure.
Regardless, for me the key was changing the "Runtime Library" option to "Multithreaded", from "Multithreaded dll". As soon as I could do it, the exe was runnable. Note: runnable from within Matlab, as well as runnable on the other Windows PC, that did not have the same development-environment. Seems all dependencies was 'packaged' into the fortran .exe.
Hope this helps someone! :)
Josh

Image Analyst
Image Analyst 2016 年 12 月 9 日
Try the dos() function instead.
Is the current folder the folder with the executable that you're trying to run?
Can you get a console window in the operating system and run the program from that? What operating system are you using?
  1 件のコメント
Nicolas Juarez
Nicolas Juarez 2020 年 9 月 1 日
dos() seem to work for me, thanks for the help!

サインインしてコメントする。


Avner Atias
Avner Atias 2020 年 11 月 1 日
Hi guys,
I know it's been a while and this issue may be resolved. I solved it in another approach. To bypass the faulty 'system' MATLAB command, the C++ program (or any other for that matter) can be ran via a BATCH file. Wrote the following simple function that generates a BATCH file:
function [] = Generate_Batch_File(Fullpath,Command)
FID = fopen(Fullpath,'w');
fprintf(FID,'echo on\n');
fprintf(FID,'%s',Command);
fclose(FID);
%%
This generates a temporary BATCH file. Running the file succeeds and the C++ program in it runs smoothly with all the command line paraeters. Just pass the command line you want to execute instead of the 'Command' variable and u are set.
Hope this helps
Avner

Stefan Glasauer
Stefan Glasauer 2021 年 2 月 27 日
Similar problem here, but the problem was that calling system or dos caused Matlab to hang:
system('myprogram "hello world"')
never comes back and has to be killed via Ctrl+C. However,
system('myprogram "hello world" &')
does come back, but leaves an open command window, which ispretty annoying when you want to call the program multiple times.
Therefore I also resorted to a batch file, here it is:
myprogram %1
exit
this batch can now be called via
system('mybatch "hello world" &')
runs the program and closes the command window after running.
Perhaps this helps!
  2 件のコメント
Walter Roberson
Walter Roberson 2021 年 2 月 27 日
system() waits for the process to finish unless you use &
Stefan Glasauer
Stefan Glasauer 2021 年 2 月 27 日
Correct, my problem was that running
myprogram "hello world"
from the commandline works without requesting any input, it returns immediately and shows the command prompt again. But
system('myprogram "hello world"')
never returns. That's why I had to run it with &, then it does come back, but leaves an open command window.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMATLAB Compiler についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by