Effacer les filtres
Effacer les filtres

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

1 vue (au cours des 30 derniers jours)
I am searching for above help, but could not found. Can you please put it through a Example code.
  1 commentaire
KL
KL le 3 Nov 2017
Be more specific, show what you're trying to do and what problem are you facing.

Connectez-vous pour commenter.

Réponse acceptée

Birdman
Birdman le 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 commentaires
Birdman
Birdman le 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.
Mukund
Mukund le 5 Nov 2017
Thank you very much..

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Tables dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by