I want to creat matrix:
7 7 7 7 7 2 2
7 7 7 7 7 2 2
6 6 9 9 9 2 2
6 6 9 9 9 2 2
6 6 8 8 8 8 8
6 6 8 8 8 8 8
I used code:
[zeros(2,5)+7zeros(2,2)+2;zeros(2,2)+6,zeros(2,3)+9,zeros(2,2)+2;zeros(2,2)+6,zeros(2,5)+8]
But i think have a different way to creat it. That way use matrix which has same element.

 채택된 답변

Voss
Voss 2022년 4월 5일
편집: Voss 2022년 4월 5일
A = [7 7 2; 6 9 2; 6 8 8]
A = 3×3
7 7 2 6 9 2 6 8 8
repelem(A,[2 2 2],[2 3 2])
ans = 6×7
7 7 7 7 7 2 2 7 7 7 7 7 2 2 6 6 9 9 9 2 2 6 6 9 9 9 2 2 6 6 8 8 8 8 8 6 6 8 8 8 8 8

댓글 수: 2

Thank you very much
Voss
Voss 2022년 4월 5일
You're welcome!
If my answer is what you wanted to do, please click Accept This Answer. Otherwise, if you had a different idea in mind, please let me know. Thanks!

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

태그

질문:

2022년 4월 5일

댓글:

2022년 4월 5일

Community Treasure Hunt

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

Start Hunting!

Translated by