Find maximum of all rows without a for-loop?

1 次查看(过去 30 天)
Hi,
I am relatively new to Matlab and only used to work with for-loops which I've already used succesfully to find the maximum in each row of my three column vectors (300X1):
for i=1:length(value_A)
test(i) = max([value_A(i),value_B(i),value_C(i)]);
end
Since this is not a very elegant and efficient way (for loop) I'm wondering how I can achieve the same result without a for loop.
Many thank in advance!

采纳的回答

Stephen23
Stephen23 2020-4-15
编辑:Stephen23 2020-4-15
Assuming that your three vectors have size 1xN (i.e. row vectors):
M = [value_A;value_B;value_C];
T = max(M,[],1)
Assuming that your three vectors have size Nx1 (i.e. column vectors):
M = [value_A,value_B,value_C];
T = max(M,[],2)
For vectors of any orientation:
M = [value_A(:),value_B(:),value_C(:)];
T = max(M,[],2)

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by