How save the array?
조회 수: 2 (최근 30일)
이전 댓글 표시
I have an array satring from 0.1 to 1 with 0.1 difference. I have to use it in foor loop. It is required that ra has to be in the below format.
for ra=0.1:0.1:1
%do something
end
howover, the value of ra is also have to be stored in a different array. Lets say the array is raz. How can I store the value of ra with each iteration in raz? I hope i have been able to explain the question
댓글 수: 0
답변 (1개)
Andres Montes
2023년 3월 29일
Hi, you can first store the raz and then use it in a for:
raz=(0.1:0.1:1)
for ra=raz(1):raz(end)
%Do something
end
In this way you'll have both, the for and the variable
댓글 수: 1
Andres Montes
2023년 3월 29일
Another thing you can do is declare the variable raz, and then use positions in the for instead of the actual numbers
raz=(0.1:0.1:1)
for i=1:length(raz)
ra=raz(i);
%Do something
end
In this way you can have your vector raz and utilize the value you need by calling a speific element of the vector
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!