- Read about element by element operations.
- You are plotting only one point i.e n = length(x).
- You have not initalized f, g
Plot will not show lines
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Christina Allen
am 2 Mär. 2021
Kommentiert: KSSV
am 2 Mär. 2021
I'm trying to show multiple lines on a graph but the lines do not show up on the figure.
x = [-0.923 : 0.01 : -0.633] ;
for n = 1 : 1 : length(x)
f(n) = 16*x(n)^3 - 13*x(n)^2 + 12*x(n) + 15
g(n) = -7*x(n)^3 - 6*x(n)^2 + 4*x(n) - 6
end
plot(x,f(n), x,g(n))
ylabel('f(x) and g(x)')
xlabel('x values')
1 Kommentar
KSSV
am 2 Mär. 2021
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Annotations finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
