Joining Tables and deleting columns
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi everyone,
How can I add two tables into a third table and how can I delete columns in a third table.
I have two tables which only contains 1 column of information. However, the information is required to replace data contained under two headings in another table - SecondVID and FirstVID.
How can I take the column data of the two tables and insert it into the third?
댓글 수: 5
Peter Perkins
2023년 4월 4일
I'm pretty sure my previous post exactly answered what you've described:
- Find values from one vector in another vector.
- Replace the values in the other vector with something else.
- The something else is text.
답변 (1개)
Swaraj
2023년 4월 4일
Step 1: Joining two tables
You can join two tables in MATLAB using the “join()” function.
Eg. Table3 = join(table1,table2);
Documentation for “join()”:
Step 2: Removing a column from the third table.
You can use “removevars” function.
Documentation for “removevars” function.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Tables에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!