Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Combine two tables with their corresponding rows
1 回表示 (過去 30 日間)
古いコメントを表示
I have two tables and want to combine them with their corresponding first column. So that "ss" and "dd" will be in a new table with their corresponding "name". Any idea how to do that?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/274554/image.jpeg)
0 件のコメント
回答 (1 件)
Sahithi Metpalli
2020 年 3 月 9 日
Hi,
You can use inner join function as shown below
table3 = innerjoin(table1,table2)
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!