How to create table from formula
显示 更早的评论
I want to create a table from an input A which is a matrix having 5 elements. I want to find variables x, y and z which are dependent on A by various formulas. I wanted to make a table showing the 5 values of input A along with respective values of x, y and z in each columns .
回答(1 个)
A=(1:5).';
x=A; y=10*A; z=100*A;
T=table(x,y,z)
类别
在 帮助中心 和 File Exchange 中查找有关 Tables 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!