Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Find minimum of $n$ first entries, with $1\leq n\leq numel(X)$.

1 Ansicht (letzte 30 Tage)
Bananach
Bananach am 19 Sep. 2016
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
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 Kommentare
Adam
Adam am 19 Sep. 2016
Can you give an example of what you are asking for? And preferably in words as semi-symbols are confusing!
Bananach
Bananach am 19 Sep. 2016
Given X=[4,3,2,5,7,0] I want Y=[4,3,2,2,2,0]

Antworten (2)

Mischa Kim
Mischa Kim am 19 Sep. 2016
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 Kommentar
Bananach
Bananach am 19 Sep. 2016
I should have been more clear: I want a vector that contains the minimum for all possible values of 6 ;) That means, in your example, that I want a vector with 10 elements, with the entries $(min(X(1:j)))_{j=1}^10$

Adam
Adam am 19 Sep. 2016
Bearbeitet: Adam am 19 Sep. 2016
Y = cummin( X );
will do the job. There are a few in that family of functions that do cumulative analysis on a vector.

Diese Frage ist geschlossen.

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by