I want to plot F(x) and G(x) in same graph for x=(-10,10) how can I do this?
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
f(x)=5x^2+9x+2
G(x)=3x+12
1 Kommentar
James Tursa
am 22 Feb. 2018
Bearbeitet: James Tursa
am 22 Feb. 2018
What have you done so far? What specific problems are you having with your code? Do you know how to evaluate polynomials for a vector input? Do you know how to plot?
Antworten (2)
Roger Stafford
am 23 Feb. 2018
x = linspace(-10,10);
f = 5*x.^2+9*x+2;
G = 3*x+12;
plot(x,f,'r-',x,G,'g-')
2 Kommentare
Siehe auch
Kategorien
Mehr zu Spline Postprocessing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!