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!