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.
我有一些问题。我有 2 个矩阵,它的大小相同。例如,第一个矩阵:1
1
0
第二矩阵 34
56
12
33
14
然后,我想比较这两个矩阵并按第一个矩阵的标准对其进行分组,这样我将有这两个组矩阵:当第一个矩阵值为 1 时的矩阵
34
和 Matrix 当第一个矩阵的值为 0
你可以试试这个:
a = [1 1 0 0 1 0]'; b = [34 56 12 12 33 14]'; b(a==1) b(a==0)