Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Find minimum of $n$ first entries, with $1\leq n\leq numel(X)$.
1 回表示 (過去 30 日間)
古いコメントを表示
Given a one-dimensional array $X$, is there a fast way (faster than a for loop) to find $min_{1\leq m\leq n} X(m)$ for all $1\leq n\leq numel(X)$?
回答 (2 件)
Mischa Kim
2016 年 9 月 19 日
Bananach, use min :
X = rand(1,10)
X =
0.6557 0.0357 0.8491 0.9340 0.6787 0.7577 0.7431 0.3922 0.6555 0.1712
min_X = min(X(1:6)) % find the minumum of the first 6 entries
min_X =
0.0357
1 件のコメント
この質問は閉じられています。
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!