Function call problem. How to solve it?
15 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have a function, sliceobject(im). I used another m file to compute the input im. After that I used sliceobject(im) But the output can't show in workspace.
I directly use sliceobject with im input is okay.
how to show the output from sliceobject(im)
2 Kommentare
Michael Haderlein
am 19 Aug. 2014
Please give us the header of the sliceobject function (first line) and the line which executes this function. Maybe, even the entire code of the sliceobject function will be necessary to help you find the error.
Antworten (1)
Adam
am 19 Aug. 2014
result = sliceobject(im);
should work fine.
Occasionally I find that my workspace doesn't refresh itself so I press F5 or just type e.g. 'result' on the command line to force the update and double check 'result' is in fact in the workspace.
6 Kommentare
Adam
am 19 Aug. 2014
What did happen though? Did the function run to completion? Did you step in with the debugger and check everything was working as expected?
Siehe auch
Kategorien
Mehr zu Function Creation 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!