how to plot quadratic equation of 2 variable
8 views (last 30 days)
Show older comments
ibrahim alzoubi
on 3 May 2021
Answered: Star Strider
on 3 May 2021
how to plot this equation:
y=(-22916841.3/(2*250))*x.^2+5080.33*x+55
0 Comments
Accepted Answer
Star Strider
on 3 May 2021
One approach —
syms x
y=(-22916841.3/(2*250))*x.^2+5080.33*x+55
figure
fplot(y,[-42 42])
grid
.
0 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
