Info
此问题已关闭。 请重新打开它进行编辑或回答。
how to pick max value in different matrix
1 次查看(过去 30 天)
显示 更早的评论
Hello i have 3 simple matrix and i want to pick the max value, heres the example
A= [52]
B= [93]
C= [75]
D=[93] %its picked by the max value
thanks you guys for helping me :)
1 个评论
Bruno Luong
2020-7-19
编辑:Bruno Luong
2020-7-19
What do you expect for D if your three matrices are not (1 x 1) but (2 x 2) ?
A =
5 9
6 6
B =
4 8
7 6
C =
1 1
9 5
D = ?
回答(2 个)
madhan ravi
2020-7-19
max([A, B, C])
1 个评论
madhan ravi
2020-7-19
Instead of creating a three different matrix , having them as one matrix relives a lot of pain ;)
madhan ravi
2020-7-19
ABC = cat(3,A,B,C);
D = max(ABC)
1 个评论
madhan ravi
2020-7-19
https://www.mathworks.com/help/matlab/ref/max.html#bupr490 See that example to understand more on how to use it along dimensions.
此问题已关闭。