help:Regarding output window
help:Regarding output window
(OP)
In my program i am doing lot of iterations, and i want to check all those values at the output window.
but i am only getting last part of my output in the output window for last iterations.
i dont know why i am not able to see first computed values
in the output window.
is there any value i have to set or any option to increase the ouput window area or something like that
can anyone help me with this
but i am only getting last part of my output in the output window for last iterations.
i dont know why i am not able to see first computed values
in the output window.
is there any value i have to set or any option to increase the ouput window area or something like that
can anyone help me with this





RE: help:Regarding output window
M
--
Dr Michael F Platten
RE: help:Regarding output window
by typing save filename at the workspace
so i got a mat file by that filename
but how to see that file contents
i am trying to open that mat file , i am not able to see its contents , when i click on that file its opening the matlab window again , not opening that file actually.
or is there any other way of doing this saving the output window results to a file.
let me know
RE: help:Regarding output window
% clear the workspace
clear
% create some variables
a = rand(10)
b = rand(20)
% list all the variables in the workspace
whos
% save the variables in a .mat file
save mydata a b
% clear the workspace
clear
% list all the variables in the workspace (none)
whos
% load the data from the .mat file into the workspace
load mydata
% list all the variables in the workspace
whos
M
--
Dr Michael F Platten