Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

Stand alone excutables runs ok in the directory it was mcced but not in another directory

1 vue (au cours des 30 derniers jours)
Tianyou Chen
Tianyou Chen le 2 Avr 2013
Clôturé : MATLAB Answer Bot le 20 Août 2021
Hi All,
I am trying to build an standalone exe from a very simple function. I had problems with the paths before so I included the called functions in the main function. Then mcc -mv myfunction.m. the myfunction.exe runs fine when in the same directory it was created. However, it does not work properly when copied to and run from another dirfectory of the same computer. It seems that it fails to call the function (included in myfunction.m) which returns a structure. So when the trying to reference to the field of the returned structire it gives an error and quits. It does not make much sense - sucha simple task. I wonder what is wrong. By the way I am using R2012b.
Any suggestions?
Thanks and cheers, Tianyou

Réponses (1)

Walter Roberson
Walter Roberson le 2 Avr 2013
How are you referencing the called function? If you name it in a string only, then use
%#function FUNCTIONNAMEHERE
to force it to be included
For example, if you had
eval('loadit myfile')
then add
%#function loadit
to your routine.
  1 commentaire
Tianyou Chen
Tianyou Chen le 2 Avr 2013
Hi Walter,
Thank you for the help. I called the function directly. The main function is like this
---------------------
function myfun
% call fun1 to get a structure S
S = fun1(x,y);
b = s.name
end
% the definition of the fun1
funcion s= fun1(arg1,arg2)
s.name = 'test';
...
end
-------------
ao all the functions I use is included in the main function.
Thanks and cheers, Tianyou

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by