how to find the largest number in the first 13 number in an array?

1 次查看(过去 30 天)
in a new array, i need to exract the largest number in the first 13 numbers in a certain array then the largest number in the 14 numbers and this process repeated
how can i write this in m file , please

采纳的回答

madhan ravi
madhan ravi 2020-9-23
max(reshape(array, [], 13))
  5 个评论
madhan ravi
madhan ravi 2020-9-23
How are you supposed to divide a 2000 numbers array by 13, 14 and then what?
hassan elkholy
hassan elkholy 2020-9-23
then the third element in the created array will be the maximum in the next 13 number and fourth is the largest in the next 14 numbers and so on

请先登录,再进行评论。

更多回答(1 个)

Image Analyst
Image Analyst 2020-9-23
编辑:Image Analyst 2020-9-23
Try this:
numElements = 154*13;
data = rand(numElements, 1); % random numbers from 0 to 1
data2D = reshape(data, 13, [])'
theLargest = max(data2D, [], 2);
plot(theLargest, 'b.-', 'LineWidth', 2);
grid on;
xlabel('Set of 13');
Do you rather need to alternate 13, 14, 13, 14, 13, 14, etc.?

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by