How to write code for diagonal matrix with specified input ?
古いコメントを表示
For n*n diagonal matrix :
n = input (' enter the order of the matrix : ');
s = input (' enter the value of s : ');
My question is if m = 3 and s = 1 then I should get my matrix as [a11] = 1 and remaining entries 0
if m = 3 and s = 2 then [a11] = 1 , [a22] = 1 and remaining entries o.
please help me out with this :)
2 件のコメント
Walter Roberson
2022 年 5 月 27 日
We recommend that you do not dynamically create variable names such as a93829382.
Walter Roberson
2022 年 5 月 27 日
a(i, i) = 1
採用された回答
その他の回答 (1 件)
kainat rasheed
2022 年 5 月 27 日
v = [1 2 3 4 5];
use this matrix to use specific numbers like this
after that write it as
D = diag(v)
v = [1 2 3 4 5];
D = diag(v)
run the code
カテゴリ
ヘルプ センター および File Exchange で Operating on Diagonal Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!