how to develope loop to save the 'n' elements from the vectors
조회 수: 6 (최근 30일)
이전 댓글 표시
clc;
clear;
A= [14,51,2,15,........,7 ] % this is known
p1=A[1]
p2=A[2]
.
.
.
.
.
pn=A[n]
%%% i need to use p1,p2,p3,...pn in another equation. so i dont know to to save this elements from A. how to use loop to that it automatically get saved for n elements
댓글 수: 0
답변 (2개)
Awais Saeed
2021년 9월 15일
Although it is not prefered to name variables in a loop but if you striclty want to do this in loops than you can use eval(). Note that using this method is NOT RECOMMENDED. It has been said many times in this forum and by MATLAB itself.
clc;
clear;
A= [14,51,2,15,7]
for col = 1:1:size(A,2)
eval(['p',num2str(col),'=A(',num2str(col),')'])
end
댓글 수: 1
참고 항목
카테고리
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!