How i display matrix ?
326 ビュー (過去 30 日間)
古いコメントを表示
my matrix is the form:
Ki = [25 35, 56 41,85 78]
i want print the like 35 or 41 or 78
0 件のコメント
採用された回答
Star Strider
2015 年 9 月 16 日
Firsgt, you need to change the commas to semicolons, then display the second column:
Ki = [25 35; 56 41; 85 78]
Display = Ki(:,2)
2 件のコメント
Star Strider
2015 年 9 月 16 日
Then you have to specify the row as well:
E12 = Ki(1,2) % Display ‘35’
E12 = Ki(2,2) % Display ‘41’
E12 = Ki(3,2) % Display ‘78’
その他の回答 (2 件)
参考
カテゴリ
Help Center および File Exchange で Matrices and Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!