Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
mcc compiled executable didn't work!!
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I tried to compile the following simple file(hello.m) as below,
mcc -mv hello.m
=====================
function hello
disp('Hello World!')
=====================
However, the compiled hello.exe didn't work at all:
When I tried to run it in the dos console, it just hung there and got no results
0 Kommentare
Antworten (1)
Ben11
am 3 Sep. 2014
I think that's because, as trivial as it may sound, the disp command is used to display stuff in the Command Window, which is not available with compiled executable since it's the point to not have a command window.
What if you try using a msgbox for instance?
msgbox('Hello World!')
0 Kommentare
Diese Frage ist geschlossen.
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!