フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

i want create this matrix

1 回表示 (過去 30 日間)
adem ski
adem ski 2019 年 11 月 27 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
i want create this matrix in one ligne command and use (ones,eye...)
m =
1.0000 3.1416 3.0000 4.0000 0 0 5.0000
1.0000 0 3.1416 4.0000 0 0 6.0000
1.0000 0 0 3.1416 0 0 7.0000
1.0000 0 0 0 3.1416 0 8.0000
1.0000 0 0 0 0 3.1416 9.0000
  3 件のコメント
adem ski
adem ski 2019 年 11 月 27 日
i want this matrix for start make program
can you help me!
Guillaume
Guillaume 2019 年 11 月 27 日
Just write the matrix in your code as you've written it above. It'll be so much more readable that any one-liner and instantly clear what the matrix is.
Case in point, I'll challenge anyone reading Jesus' one liner to say what matrix it generates immediately upon reading the code.

回答 (1 件)

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH 2019 年 11 月 27 日
solution :
m=[ones(5,1) pi*eye(5) (5:9)']+[diag(4,3)+diag(3:4,2) zeros(4,3 ); zeros(1,7)]

この質問は閉じられています。

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by