Taking min of a vector and all values within 10% error

1 回表示 (過去 30 日間)
Joey
Joey 2015 年 4 月 7 日
編集済み: Matt J 2015 年 4 月 7 日
I need a way to get all the values within a 10% error of the minimum value of a vector. How could I go about that?

採用された回答

Matt J
Matt J 2015 年 4 月 7 日
編集済み: Matt J 2015 年 4 月 7 日
This considers both positive and negative min(x),
xmin=min(x);
coeff=1+0.1*sign(xmin);
values = x(x<=coeff*xmin)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeElementary Math についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by