The graph is not displayed
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Mathew Aibinu
el 26 de Ag. de 2023
Respondida: Dyuman Joshi
el 26 de Ag. de 2023
close all
clear all
x0 = 100;
r=1.02;
for j=1:1:5
x(1) = x0;
x(j+1) = r*x(j);
end
plot(j, x(j))
grid on
0 comentarios
Respuesta aceptada
Dyuman Joshi
el 26 de Ag. de 2023
x0 = 100;
r=1.02;
%Bring the assignment out of loop, as it is not affected by the loop
x = x0;
%Define indices to loop over
j = 1:5;
for k=j
x(k+1) = r*x(k);
end
%Plot with markers to show the data points
plot(j,x(j),'bo-')
grid on
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Line Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!