I have two datasets containing 100 x and 100 y coordinates respectively. I am using for loop to create a function such that the 1st entries of both data sets are represented by p1 and the second by p2 and so on. But this only assigns the values to pn and not p1,p2,p3 and so on. What should I do?
for n=1:100
pn=[x(n),y(n)]
end

댓글 수: 3

Stephen23
Stephen23 2018년 1월 9일
편집: Stephen23 2018년 1월 9일
"What should I do?"
Learn to use arrays and indexing.
PS: You do not need a loop at all:
p = [x(:),y(:)];
Busy Bee
Busy Bee 2018년 1월 9일
thank you. I need to learn a lot. :)
Jan
Jan 2018년 1월 9일
@Busy Bee: Then you are at the right forum to get input. :-)

댓글을 달려면 로그인하십시오.

 채택된 답변

Jan
Jan 2018년 1월 9일
편집: Jan 2018년 1월 9일

0 개 추천

Do not create a set of variables. See FAQ: How to create A1, A2, ... Hiding indices in the names of variables is a frequent programming mistake made by beginners.
Fortunately there is a much easier method: Use indices as indices. :-)
p = [x, y] % or maybe [x(:), y(:)]
If you want to access the variable you tried to call "p4", use:
p(4, :)
Read the link posted by Stephen carefully. It will help you to avoid evil pitfalls.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

질문:

2018년 1월 9일

댓글:

Jan
2018년 1월 9일

Community Treasure Hunt

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

Start Hunting!

Translated by