standalone doesn't start

조회 수: 2 (최근 30일)
Stefan
Stefan 2015년 12월 15일
답변: Stefan 2015년 12월 16일
Hello everybody,
I have deployed a standalone runtime of my application developped in MATLAB r2014b. If I run the standalone on my computer (with MATLAB installed) it comes up and works fine. If I tranfer the application-files to another computer and run the executable, it doesn't come up (with admin-rights or without). Only the splash screen is appears for several seconds an then disappears. In the windows command console there is an error thrown:
Error using ~=
Not enough input arguments.
Error in startup (line 15)
Not enough input arguments.
I have installed MCR_R2014b_win64_installer.exe from the MATLAB-website under admin-rights.
What is wrong?
Thanks for your help.
Greetings, Stefan
  댓글 수: 1
Adam
Adam 2015년 12월 15일
편집: Adam 2015년 12월 16일
I'm not familiar with the exact nature of what gets packaged into a deployed application, but from your error message it seems you have a startup file that is run every time Matlab starts. This is being packaged into your application and run when the application starts. Whatever is on line 15 of that startup file is not happy when it is run from elsewhere. Have you got some code working with a hard-coded path or something similar in there? I would guess you have something that is specific to your machine.
Off the top of my head I can't think what kind of call would result in 'Not enough arguments' for the ~= operator - it works if either operand is [], but I guess if one operand is simply not defined at all in the code path it is running that would cause it.
Personally I always build an installer rather than copying the raw executable around to different machines, but that shouldn't make a difference to your particular problem I don't think.

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

채택된 답변

Stefan
Stefan 2015년 12월 15일
Hello Adam,
thanks for your advice. I remember, that there was a modification performed by our IT department. Could be that this affected my startup-file. But how can I prevent this being deployed wiht my application. I don't think I will need it for the application to run.
Greetings, Stefan
  댓글 수: 2
Steven Lord
Steven Lord 2015년 12월 15일
If there are lines in your startup.m that you don't want to be executed in a standalone application, guard them.
if ~isdeployed
disp(['This will only be displayed if you are NOT ', ...
'in a deployed application'])
end
Adam
Adam 2015년 12월 16일
If you didn't create the startup file yourself and don't know where it is you can type
which startup
to tell you where it is or simply
edit startup
to open the startup file for editing or reading.

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

추가 답변 (2개)

Image Analyst
Image Analyst 2015년 12월 15일
and tell us what line 15 says, or even better, give us the first 15 lines of the source code.

Stefan
Stefan 2015년 12월 16일
Hello guys,
many thanks for your comments and answers. I edited the startup.m like you said, Steven, and it works fine now. The Standalone works without any problems on other computers.
Greetings, Stefan

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by