I have the following problem in MATLAB.
f1 [4757*256] table
f2 [4757*512] table
f3 [14073*1024] table
While I can easily join f1
and f2
with
f1n = join(f1,f2,'Keys','RowNames');
I cannot do the same with f1
, f3
in
f3n = join(f1,f3,'Keys','RowNames');
and I recieve the following error:
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
has got most row names as f1
but NOT necessarily all. Indeed what it is ideal to do is to keep the rows that are common in both tables. How can this be done in your opinion?
Thanks for your feedbacks