필터 지우기
필터 지우기

evaluate dynamic variables in a loop and assign each one with optimvar.

조회 수: 1 (최근 30일)
Hi;
i created a number of variables like the following:
for j=1:N
eval(['b' num2str(j) '= j']);
end
i need to assign each b1,b2,b3,.... as the following inside the loop.
b1=optimvar('b1','Type','integer','LowerBound',0,'UpperBound',1);
b2=optimvar('b2','Type','integer','LowerBound',0,'UpperBound',1);
.
.
.
please help.
  댓글 수: 4
Walter Roberson
Walter Roberson 2019년 6월 26일
Cell array, or dynamic field names on a struct array.
mohammad alquraan
mohammad alquraan 2019년 6월 26일
give me a hint how to start writing the code.

댓글을 달려면 로그인하십시오.

채택된 답변

infinity
infinity 2019년 6월 26일
Hello,
This small example may help you
clear
N = 3;
b = cell(1,N);
for i = 1:N
a = sprintf('b%d',i);
b{i} = optimvar(a,'Type','integer','LowerBound',0,'UpperBound',1);
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Performance and Memory에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by