我在 MATLAB 中有以下问题。
f1 [4757*256] table
f2 [4757*512] table
f3 [14073*1024] table
虽然我可以很容易地加入f1
并f2
与
f1n = join(f1,f2,'Keys','RowNames');
我不能对f1
, f3
in做同样的事情
f3n = join(f1,f3,'Keys','RowNames');
我收到以下错误:
Both tables must have the same row names when using
them as the key.
Error in fuse_LL_GenreTag_features (line 33)
F3new = join(f1,f3,'Keys','RowNames');
f3
有大多数行名,f1
但不一定全部。实际上,理想的做法是保留两个表中共有的行。您认为如何做到这一点?
感谢您的反馈