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

1 次查看(过去 30 天)
Please answer me

采纳的回答

Birdman
Birdman 2018-2-9
One way is symbolical:
i=3;j=4;
B=sym('B',[i j])

更多回答(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 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by