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 件)
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!