Problem with plotting dots in points
조회 수: 4 (최근 30일)
이전 댓글 표시
Hi,
I have problem I wanted to plot dots in points but It shows only last dot
figure(2);
A = [1,2,3,4,5,6,7,8]
Y = [1,2,3,4,5,6,7,8]
i = 8;
for c = 1:i
hold on
plot(A(i),Y(i),'r.')
end
댓글 수: 0
답변 (1개)
Jan
2022년 3월 17일
편집: Jan
2022년 3월 17일
The loop does not depend on the loop counter:
i = 8; % <- this is the index in all iterations
for c = 1:8
I assume you mean:
for i = 1:8
참고 항목
카테고리
Help Center 및 File Exchange에서 Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!