How to plot vectors within in a for loop using a variable?
조회 수: 3 (최근 30일)
이전 댓글 표시
I have some coloumn vectors in my workspace named x1, x2, x3 and y1, y2, y3
I want to make a for loop to plot x,y for each of these, im not sure of how the syntax should be but would something like this be possible:
for i = 1:3
plot (x(i), y(i)) *** not sure how this line should look (i want to plot x1 vs y1 then in the second loop plot x2 vs y2 etc...)
hold on
end
댓글 수: 0
채택된 답변
Walter Roberson
2021년 2월 14일
x = {x1, x2, x3} ;
y = {y1, y2, y3} ;
for i = 1:3
plot(x{i} , y{i}) ;
hold on
end
댓글 수: 0
추가 답변 (1개)
Jan
2021년 2월 14일
See: TUTORIAL: EVAL
Using variables called x1, x2, ... hides an index in the names. Don't do this, because it is a shot in your knee. Use indices instead: x{1}, x{2}, ...
Then see the code Walter has suggested.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Graphics Performance에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!