×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!
  • Students Click Here

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Jobs

help:Regarding output window

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

RE: help:Regarding output window

You can adjust the command window buffer size in the "preferences" section of the command window menu. Alternatively, write your results to an array or to a file.

M

--
Dr Michael F Platten

RE: help:Regarding output window

(OP)
i tried saving workspace values into  a file

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

"save" only saves data contained in variables. Have a look at the Matlab documentation for the "save" command.

% 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

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members!


Resources