Clear Filters
Clear Filters

How to suppress ans in a table

1 view (last 30 days)
Rebecca Scott
Rebecca Scott on 18 Oct 2016
Commented: Walter Roberson on 18 Oct 2016
I have a 3 column table being produced as part of a while loop process. However on each table (ans=) comes up how can I suppress it without surpassing the table.
The code I am using is this so far.
clc clear all
for length = 1:0.04:1.16;
original = 1;
width = (0.005*(2-length));
ratio = [width length];
table(original,ratio ,length)
end

Answers (1)

Image Analyst
Image Analyst on 18 Oct 2016
Edited: Image Analyst on 18 Oct 2016
Add a semicolon at the end of the line of code
table(original,ratio ,length);
It's also not normally used at the end of a "for" line.
  2 Comments
Rebecca Scott
Rebecca Scott on 18 Oct 2016
I found that this just hid all the tables (not just the ans= )
Walter Roberson
Walter Roberson on 18 Oct 2016
Put disp() around the table call

Sign in to comment.

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!