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 次查看(过去 30 天)
if ersum(:,counter)<ersum(:,counter+1) minind(:,k)=counter; else minind(:,k)=counter+1; end

回答(1 个)

Jos (10584)
Jos (10584) 2016-4-22
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.

类别

Help CenterFile Exchange 中查找有关 Data Types 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by