Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个维度为 mx2 的矩阵。我需要的是一个 mx1 矩阵,以便将 mx1 矩阵的每个元素作为 mx2 矩阵的每个 1x2 行的最大值。我可以通过迭代来做我知道但有直接的方法吗?
是的,你可以直接做。matlab中的max函数可让您指定要取最大值的维度:
max
max(data_m_by_two, [], 2)
应该给你你想要的2,里面说你想在矩阵的第二维上取最大值,它在列上。
2