필터 지우기
필터 지우기

Change variable name in a loop

조회 수: 17 (최근 30일)
gaetano mallardo
gaetano mallardo 2019년 4월 8일
편집: madhan ravi 2019년 4월 8일
I want to call a function in a loop which gives me a 3xn matrix and i want to call the matrix model_(number)
for i=1:length(Domain)
model=IDtriang(trianglesN,Domain,i);
so if length=7 i would like to store 7 matrix like variables as
Model_1
Model_2
Model_3
I know i can do it saving it, but than i should call it back and i don't need it as i have to work with it

채택된 답변

madhan ravi
madhan ravi 2019년 4월 8일
편집: madhan ravi 2019년 4월 8일
model = cell(1,length(Domain)); % before loop
model{i}=IDtriang(trianglesN,Domain,i);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by