hello i want to create a table by using the value i obtained from a for loop, how can i get it

1 次查看(过去 30 天)
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

采纳的回答

VBBV
VBBV 2021-12-26
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'})

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Type Identification 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by