How can I get data from evaluating a function, say y=x^2+5 and put it in table?
3 次查看(过去 30 天)
显示 更早的评论
How can I get data from evaluating a function, say y=x^2+5 for x=0.1 to 0.9 for 50 points in between and put it in table?
0 个评论
采纳的回答
the cyclist
2021-9-23
x = linspace(0.1,0.9,50);
y = x.^2+5;
tbl = table(y.');
3 个评论
the cyclist
2021-9-23
The semicolon at the end of a line of MATLAB code suppresses the output. So just leave the semicolon off of any line you want displayed to the command window.
x = linspace(0.1,0.9,50)
y = x.^2+5
tbl = table(y.')
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!