如何在matlab里用for遍历五个矩阵。

조회 수: 2 (최근 30일)
dmqkye
dmqkye 2023년 5월 22일
답변: xupfbeg 2023년 5월 22일
比如说我现在有P1到P5五个矩阵
for L=1:5
I=PL;
这样写是不对的,现在的问题是,如果不用三维矩阵,应该如何更改PL呢,试了P'L'也不行,P[int2str(L)]也不行
请各位大神不吝赐教:'(

채택된 답변

xupfbeg
xupfbeg 2023년 5월 22일
仅供参考
P1=rands(1,5);
P2=rands(1,5);
for i=1:2
    I=eval(['P',num2str(i)])
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB 快速入门에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!