how can i show the result parameters in workspace?

7 Ansichten (letzte 30 Tage)
fakhteh
fakhteh am 22 Mai 2014
Beantwortet: Mahdi am 22 Mai 2014
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 Kommentar
Geoff Hayes
Geoff Hayes am 22 Mai 2014
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?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Mahdi
Mahdi am 22 Mai 2014
You can do as Geoff mentioned in the comments. You can also tell the m file program to display the required values using disp or sprintf or something along those lines. Also, make sure that you don't have clc anywhere to clear the window.

Kategorien

Mehr zu Data Type Identification finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by