I am trying to convert an expression defined this way into a matrix
syms x
y = 3*x+2+x^5;
I would the matrix to take values from 0 with a step of 0.001 to 10
thank you

 採用された回答

Torsten
Torsten 2022 年 10 月 23 日

1 投票

x = 0:0.001:10;
y = 3*x+2+x.^5;
plot(x,y)

その他の回答 (0 件)

カテゴリ

製品

リリース

R2021b

タグ

質問済み:

2022 年 10 月 23 日

回答済み:

2022 年 10 月 23 日

Community Treasure Hunt

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

Start Hunting!

Translated by