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.
我有一个 4 列数组,我想为每一行获取一个向量,该向量包含包含该行最大值的列标签。
我可以循环执行此操作,但我想使用矩阵函数来提高速度。
如果不编写自己的 lib 函数,我怎么能做到这一点?
有一个函数可以做到这一点。如果x是您的矩阵,请尝试max.col(x).
x
max.col(x)