Application Compiler One or More feature 'MRC' resulted in Error
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Life is Wonderful
am 16 Dez. 2019
Bearbeitet: Life is Wonderful
am 25 Dez. 2019
I am getting error when I compile the my code for Application Compiler ( Standalone )
Below is my code . It runs fine but throws error when i run the MRC *.exe. Below is my code
I get the error string for "Content = fetchOutputs(Content); ". I have added picture for the error message.
0 Kommentare
Akzeptierte Antwort
Adam Danz
am 16 Dez. 2019
Bearbeitet: Adam Danz
am 16 Dez. 2019
When I copy your code into an m file, I instantly see an error at this line. I assume you're getting that error, too.
function WorkingDir = getcurrentdir
If you are treating this file as a function file, either all or none of the functions must end with an end. However, it seems that startupfcn() is the main function and the other functions are nested. In that case, none of the functions need an end.
For more info on function files, local functions, and nested function, https://www.mathworks.com/help/matlab/matlab_prog/types-of-functions.html
Additionally, the function getcurrentdir() probably should have an underscore to match the function call. get_currentdir().
10 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Adding custom doc finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!