Help me with Graph plot
이전 댓글 표시
how can i plot a graph for y vs x, for this function y = 6x^3 - 37x^2 + 37x - 10 ? can you give me commands?
답변 (2개)
One approach —
syms x
y = 6*x^3 - 37*x^2 + 37*x - 10
figure
fplot(y)
grid
.
DGM
2021년 5월 14일
This is some of the most rudimentary stuff with the most abundant supply of examples around. Consider another example:
x = linspace(10,11,5);
y = 6*x.^2 + 37*x;
plot(x,y); grid on
You'll have to adjust it to suit your needs
카테고리
도움말 센터 및 File Exchange에서 Mathematics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
