Filter löschen
Filter löschen

i have an array, named ersum which have 20000 columns (1*20000). i need to find minimum value of first 50 columns. next minimum value of next 50 columns and so on upto last 50 in that 20000 columns. please send suitable code. thank you sir.

1 Ansicht (letzte 30 Tage)
if ersum(:,counter)<ersum(:,counter+1) minind(:,k)=counter; else minind(:,k)=counter+1; end

Antworten (1)

Jos (10584)
Jos (10584) am 22 Apr. 2016
you can RESHAPE your vector into a 50-by-N array and then use MIN which can operate on all columns at once.
help reshape
help min
Hint: start with a small example, with e.g. 4 instead of 50, and 12 instead of 20000 values.

Kategorien

Mehr zu Data Types finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by