a function generating a square matrix
이전 댓글 표시
Hello!
I am trying to create a function who creating a matrix like that
A = [11 12 13 14]
[21 22 23 24]
[31 32 33 34]
[41 42 43 44]
And I have no idea how to do it, can someone could give me any tips?
How should I approach that?
Thank you!
채택된 답변
추가 답변 (1개)
Jorg Woehl
2021년 3월 11일
편집: Jorg Woehl
2021년 3월 11일
A = [11, 12, 13, 14; 21, 22, 23, 24; 31, 32, 33, 34; 41, 42, 43, 44]
A comma (optional) starts a new column in a matrix, while a semicolon (required) starts a new row. See Get Started with MATLAB: Matrices and Arrays.
댓글 수: 4
Thomas Kozinski
2021년 3월 11일
Jorg Woehl
2021년 3월 11일
I am not sure I understand what you are trying to do...
Thomas Kozinski
2021년 3월 12일
Jorg Woehl
2021년 3월 12일
Is there a particular reason that you need to use an (inefficient) loop instead of a simple assignment operation? If your question is related to a class assignment, please tag it as "homework".
카테고리
도움말 센터 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!