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