write a script that creates identity matrices of any size without using the function eye

17 ビュー (過去 30 日間)
thank you
  2 件のコメント
Stephen23
Stephen23 2019 年 1 月 27 日
編集済み: Stephen23 2019 年 1 月 27 日
@ Chloe St John: it is not appreciated when you delete your question text. This has the effect of treating us as your own disposable personal assistants, which we are not. If you want private help then you will find plenty of consultants who will gladly take your money and offer whatever private advice you want.
If you are concerned about your tutor or professor finding that you have been given all answers to your homework, then perhaps consider that before posting onto a public forum:
Rena Berman
Rena Berman 2019 年 3 月 5 日
(Answers Dev) Restored edit.

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

回答 (2 件)

Stephen23
Stephen23 2019 年 1 月 24 日
編集済み: Stephen23 2019 年 1 月 24 日
Don't use a loop, learn to write simple vectorized code:
N = 5;
M = zeros(N);
M(1:N+1:end) = 1

Kevin Phung
Kevin Phung 2019 年 1 月 24 日
n = zeros(5); %square matrix
for i= 1:size(n,1)
n(i,i) = 1;
end

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by