How i can get graph in the form of line instead of points
조회 수: 1 (최근 30일)
이전 댓글 표시
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
댓글 수: 0
답변 (1개)
Guillaume
2017년 6월 23일
By not using a loop and if statements. Simply:
plot(x, min(E, c), '-')
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!