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.
有没有办法对 octave 中的矩阵执行逐行操作?
我有一个(mXn)整数矩阵,我可以获得一个m dimensional向量,其中每个元素都是相应行的最大元素吗?我怎么能在八度音阶中做到这一点?
(mXn)
m dimensional
在 matlab 中,对于 2D array A,这将是
A
max(A,[],2)
如果您想知道找到值的索引:
[value,index]=max(A,[],2)