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

1 Ansicht (letzte 30 Tage)
EM geo
EM geo am 7 Mär. 2019
Kommentiert: tmarske am 7 Mär. 2019
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 Kommentar
tmarske
tmarske am 7 Mär. 2019
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.

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Tables finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by