a problem with for loop and indexinf
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi all!
i have 10 Arrays. they have the Name Array_1..........Array_10. for all of the Arrays i want to make some mathematical Operation e.g:
%AR_1=exp(Array_1)+Array_1.^2;
how could i do this with a for Loop like this:
% for k=1:10
AR_i=exp(Array_i)+Array_i.^2
end
Thank you all
댓글 수: 0
답변 (2개)
George Papazafeiropoulos
2014년 5월 20일
편집: Andrei Bobrov
2014년 5월 20일
A={Array_1;Array_2;Array_3;Array_4;Array_5;Array_6;Array_7;Array_8;Array_9;Array_10};
for k=1:10
AR{k}=exp(A{k})+A{k}.^2
end
댓글 수: 0
Andrei Bobrov
2014년 5월 20일
A = eval(strcat('{',sprintf('Array_%d;',1:10),'}'));
AR = cellfun(@(x)exp(x)+x.^2,A,'un',0);
댓글 수: 0
참고 항목
카테고리
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!