Working with even rows

Hello, I have a matrix 4x4, and I want to find the maximum of all elements which are in even rows.

更多回答(1 个)

x = randn(4,4);
y = x(2:2:end,:);
max(y,[],2)
The above gives you maximums in rows 2 and 4.
If you want the maximum of all the elements in rows 2 or 4 considered all at once
x = randn(4,4);
y = x(2:2:end,:);
max(y(:))

1 个评论

all at once - I did it (sorry for the bad english...) and this will also work on a bigger matrice, right?

请先登录,再进行评论。

类别

帮助中心File 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