How to plot polynomial in matlab
14 次查看(过去 30 天)
显示 更早的评论
equation is f(x) = 150x - 400x^2 + 500x^3
Want to plot f(x) for x= 0 to 0.8
need to have a legend
4 个评论
Dyuman Joshi
2024-3-3
You need to use element-wise power - power, .^
epsilon = linspace(0,0.8,100);
sigma = 150*epsilon - 400*epsilon.^2 + 500*epsilon.^3;
figure;
plot (epsilon, sigma)
xlabel('Strain(ε)');
ylabel('Stress(σ)(kPa)');
title('Stress/Strain for Foam');
grid on;
回答(1 个)
Alexander
2024-2-29
编辑:Alexander
2024-2-29
Some homework assistance and solution:
x = linspace(0,0.8,1000);
y = 150*x - 400*x.^2 + 500*x.^3;
plot(x,y)
1 个评论
Dyuman Joshi
2024-2-29
编辑:Dyuman Joshi
2024-2-29
I believe that's solving the problem rather than assisting.
I suggest you edit your answer accordingly.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Function Creation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!