convert specific vector to vector in one direction
2 ビュー (過去 30 日間)
古いコメントを表示
if i have av=[1 2;3 4;2 1;4 3] and i want the result a=[1 2;3 4]
0 件のコメント
回答 (3 件)
James Tursa
2016 年 2 月 19 日
編集済み: James Tursa
2016 年 2 月 19 日
a = av(1:2,1:2);
If this simple solution is not what you are looking for then please give more details in your question.
Based on your reply it looks like you simply want the top half of your matrix. So try this:
[m n] = size(av);
a = av(1:(m/2),:);
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!