I am trying to get a 3*3 diagnol matrix by using the following code. But the resultant matrix dimensions exceed 3*3 matrix.
1 回表示 (過去 30 日間)
古いコメントを表示
theta = 0:pi:2*pi;
a = cos(theta)+sin(theta);
A = ismatrix([[a,0,0],[0,a,0],[0,0,a]]);
a = cos(theta)+sin(theta);
A = ismatrix([[a,0,0],[0,a,0],[0,0,a]]);
B = [a 0 0;0 a 0;0 0 a];
3 件のコメント
回答 (1 件)
Ameer Hamza
2018 年 5 月 6 日
編集済み: Ameer Hamza
2018 年 5 月 6 日
If you want the element of a to be the diagonal of B, you need something like this
theta = 0:pi:2*pi;
a = cos(theta)+sin(theta);
B = diag(a);
4 件のコメント
Ameer Hamza
2018 年 5 月 6 日
In that video, for loop is used. In my code there is not for loop and MATLAB does store all the values of a. Have you tried running the code? The following code gives a vector (containing all values of a)
theta = 0:pi:2*pi;
a = cos(theta)+sin(theta);
disp(theta);
ans =
0 3.1416 6.2832
disp(a);
ans =
1 -1 1
You still did not explain, what do you want in MATRIX?
参考
カテゴリ
Help Center および 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!