i got this matrix question on my exam and i really had hard time with it

1 回表示 (過去 30 日間)
Marzouq harbi
Marzouq harbi 2021 年 6 月 2 日
コメント済み: Rik 2021 年 6 月 4 日
can any one explain the sulotion of it please ? thank you.
  1 件のコメント
Rik
Rik 2021 年 6 月 2 日
What did you try? Did you read the documentation for each of those functions?
The solution is to divide the matrix in sections that can be created with only those three functions.

サインインしてコメントする。

採用された回答

Kunal Kandhari
Kunal Kandhari 2021 年 6 月 2 日
This can be done using following line of code:
A = [zeros(2,3) ones(2,2); eye(5)]
Explaination:
zeros(2,3) will create array of zeros with 2 row and 3 column
ones(2,2) will create array of ones with 2 row and 2 column
eye(5) will create identity matrix of dimension 5
[zeros(2,3) ones(2,2)] will append ones after zero therefore resulting in
following matrix:
0 0 0 1 1
0 0 0 1 1
Now we want to append identity matrix below above obtained matrix
therefore we use semicolon after zeros and ones array and identity
matrix will be appended vertically
-----------------------------------------------------------------------------------------
You can refer following links for better understanding:
for creating array of zeros:
for creating array of ones:
for creating identity matrix:
  3 件のコメント
Marzouq harbi
Marzouq harbi 2021 年 6 月 4 日
this is not a homework my guy can you read the Q ? it is a Question that came in an exam and i already lost marks on it.
Rik
Rik 2021 年 6 月 4 日
So you did see that comment but not my first one? I'm sorry, but a few years here have made me a bit sceptic/cynical.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by