Hello i m totally a matlab noob. Here is it a question. I have a matrix K[97552,1] and i need to find minumum values of each 28 parts. Like K[1:28,1], K[28:56,1]... so i need 97552/28=3484 minumum values. if you help me i would be happy.. thanks a lot.

 采纳的回答

John D'Errico
John D'Errico 2016-5-14
编辑:John D'Errico 2016-5-14
So what happens if you reshape the matrix, to be 28x3484?
Then use min. So
groupmins = min(reshape(A,[28,3484]),1);
Learn to use MATLAB. If you are unfamiliar with these things, then it is time to start reading.

更多回答(1 个)

类别

帮助中心File Exchange 中查找有关 Mathematics 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by