How to store value of each iteration in table and call that in another function

2 views (last 30 days)
I am searching for above help, but could not found. Can you please put it through a Example code.

Accepted Answer

Birdman
Birdman on 3 Nov 2017
As an example:
n=10;
for i=1:n
Array=rand(1,2)
table_array(i,:)=table(Array)
%see every step which randomly generated values are stored in a table
end
DISPLAY(table_array)
%DISPLAY is the function which displays the table
function y=DISPLAY(x)
y=x;
end
  5 Comments
Birdman
Birdman on 4 Nov 2017
n=10;
for i=1:n
Array=rand(1,2);
B_Array=sqrt(Array);
table_array(i,:)=table(Array,B_Array)
%see every step which randomly generated values are stored in a table
end
DISPLAY(table_array)
%DISPLAY is the function which displays the table
You will add it like this.

Sign in to comment.

More Answers (0)

Categories

Find more on Tables in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!