The code doesn't generate a graph. Please tell where I am doing wrong.
이전 댓글 표시
clc, clear, close all
x = 1;
for n = 1:30
y = (7259/14520)*x + 167/2420
plot(n,y,'color','m')
hold on
x = y;
end
답변 (1개)
You have to use a marker, as you are plotting point by point.
x = 1;
for n = 1:30
y = (7259/14520)*x + 167/2420
plot(n,y,'.','color','m')
hold on
x = y;
end
댓글 수: 3
Save the result into arrays and plot at once.
x = 1;
y = zeros(1,30) ;
for n = 1:30
y(n) = (7259/14520)*x + 167/2420 ;
x = y(n);
end
plot(1:30,y,'.-','color','m')
MUDASIR MALIK
2022년 4월 5일
KSSV
2022년 4월 5일
Thanks is accepting/ voting the answer.
카테고리
도움말 센터 및 File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

