hello i want to create a table by using the value i obtained from a for loop, how can i get it
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Jason Tan Jia Sheng
am 26 Dez. 2021
Kommentiert: Jason Tan Jia Sheng
am 26 Dez. 2021
x=5
y=30
for z=[1 2 4 8]
a=x*y*z;
disp(a);
end
table
x y z
5 30 150
5 30 300
5 30 600
5 30 1200
0 Kommentare
Akzeptierte Antwort
VBBV
am 26 Dez. 2021
x=5
y=30
I = 1
for z=[1 2 4 8]
a(I)=x*y*z;
xx(I) = x;yy(I) = y;
I = I+1;
end
iwant = table(xx.',yy.',a.','VariableNames',{'x','y','z'})
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!