How to create a matrix B=[bij]=[max(i,j)] belongs to class of rectangular matrices
3 次查看(过去 30 天)
显示 更早的评论
Please answer me
0 个评论
采纳的回答
更多回答(1 个)
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));
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!