How can I create it?
1 回表示 (過去 30 日間)
古いコメントを表示
How can I create a 5x5 matrix with the following criterion: aij = 2cos(0.4(i-j)π)
0 件のコメント
採用された回答
Star Strider
2016 年 2 月 12 日
A bit more efficiently, using meshgrid:
[i,j] = meshgrid(1:5);
a = 2*cos(0.4*(i-j)*pi);
2 件のコメント
Star Strider
2016 年 2 月 12 日
My pleasure!
The meshgrid function can make a number of matrix calculations easier.
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Resizing and Reshaping Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!