how to select first 23 rows and 25 columns from a 25 X 25 matrix in matlab
52 ビュー (過去 30 日間)
古いコメントを表示
access a matrix from another matrix which is having sifferent dimension. i.e how to select first 23 rows and 25 columns from a 25 X 25 matrix in matlab
0 件のコメント
採用された回答
Grzegorz Knor
2013 年 8 月 30 日
a = rand(25);
b = a(1:23,:);
2 件のコメント
Jan
2013 年 8 月 30 日
@Nirmala: Such fundamental questions are explained exhaustively in the Getting Started chapters of the documentation. It is recommended to read them carefully, because a forum cannot teach all these basics.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!