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!