how can join two tables based on specific values with repetitions?

5 次查看(过去 30 天)
I want to join the two table attached based on all the values in the column called 'idstop' of the table T_equo. How can i do?
I wrote this code but it give me this error: "Error using tabular/join (line 130) Unrecognized variable name 'idstop'."
join(T_equo, T_schmidt, 'Keys', {'idstop'})
Tnks in advance
  1 个评论
tmarske
tmarske 2019-3-7
If you give only a single 'Keys' parameter, then the variable name you give must exist in both tables. Here idstop exists only in T_equo, hence the error.
If you want to join two tables based on key columns with different names, you need to specify them using the 'LeftKeys' and 'RightKeys' parameters.

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by