Function call problem. How to solve it?
3 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
Michael Haderlein
2014 年 8 月 19 日
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.
回答 (1 件)
Adam
2014 年 8 月 19 日
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 件のコメント
Adam
2014 年 8 月 19 日
What did happen though? Did the function run to completion? Did you step in with the debugger and check everything was working as expected?
参考
カテゴリ
Help Center および File Exchange で Function Creation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!