How to create a matrix B=[bij]=[max(i,j)] belongs to class of rectangular matrices

조회 수: 3 (최근 30일)
Please answer me

채택된 답변

Birdman
Birdman 2018년 2월 9일
One way is symbolical:
i=3;j=4;
B=sym('B',[i j])
  댓글 수: 2
Farooq Aamir
Farooq Aamir 2018년 2월 9일
Thanks birdman but how i get without symbolic
Birdman
Birdman 2018년 2월 9일
i=3;j=4;B=string(zeros(i,j));
for a=1:i
for b=1:j
B(a,b)=sprintf('b%i%i',a,b);
end
end

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

추가 답변 (1개)

Christine Tobler
Christine Tobler 2018년 2월 12일
Focusing on the max(i, j) part, you could use
i = 3;
j = 4;
B = max((1:i)', (1:j));

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by