How i can get graph in the form of line instead of points

2 visualizaciones (últimos 30 días)
usman younus
usman younus el 23 de Jun. de 2017
Respondida: Guillaume el 23 de Jun. de 2017
E=[7840.00,22690.00,44950.00,74630.00, 111730.00];
x=[5601,10000,13000,19000,250000];
c=48000;
for i=1:5
if(E(i)<c)
plot(x(i),E(i),'-');
hold on;
else
plot(x(i),c,'-')
hold on;
end
end

Respuestas (1)

Guillaume
Guillaume el 23 de Jun. de 2017
By not using a loop and if statements. Simply:
plot(x, min(E, c), '-')

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by