How can i rearrange a vector ?
1 回表示 (過去 30 日間)
古いコメントを表示
I need you help in matlab
if A=[8 1 12 3 6 10 13 3];
AVG=sum(A)/length(A);
i need to neglect all values that below the AVG
so i get B=[8 12 10 13]
can you help me to perform this task in general
0 件のコメント
採用された回答
the cyclist
2015 年 9 月 1 日
B = A(A>=mean(A))
2 件のコメント
the cyclist
2015 年 9 月 2 日
I don't really understand the new question.
(Also, you might consider posting a new question. More people will see it.)
その他の回答 (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!