how can i show the result parameters in workspace?
3 次查看(过去 30 天)
显示 更早的评论
i write a m file program but after run the program, workspace is empty only for this program.how can i see parameter result in workspace?
1 个评论
Geoff Hayes
2014-5-22
What is the signature on your function (program)? Does it return something, the parameter result that you are expecting? i.e. if the signature is something like:
function [u,v] = myfunction(a,b,c)
% code
end
then when you call this function from the workspace, make sure that you are allowing the output of myfunction to be assigned to something:
>> [u,v] = myfunction(a,b,c);
Or are you expecting to see more/different parameter data?
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Whos 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!