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.
给定两个具有相同列数的矩阵A和B,我想知道A和B中是否有相同的行。在 Dyalog APL 中,我可以像这样使用split函数:
(↓A) ∊ ↓B
有没有办法在没有拆分功能的情况下计算相同的结果?
像 A⍳B 这样的东西不仅会显示成员资格,还会显示相等行的位置。