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!