how to plot quadratic equation of 2 variable

2 次查看(过去 30 天)
how to plot this equation:
y=(-22916841.3/(2*250))*x.^2+5080.33*x+55

采纳的回答

Star Strider
Star Strider 2021-5-3
One approach —
syms x
y=(-22916841.3/(2*250))*x.^2+5080.33*x+55
y = 
figure
fplot(y,[-42 42])
grid
.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Symbolic Math Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by