Function call problem. How to solve it?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Michael Haderlein
il 19 Ago 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.
Risposte (1)
Adam
il 19 Ago 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 Commenti
Adam
il 19 Ago 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?
Vedere anche
Categorie
Scopri di più su Function Creation in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!