Replacing a column in a table
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi,
I want to replace a column A in table S with a table that has the column title A.
In other words
t=array2table(A)
how can i replace column A in table s with t?
댓글 수: 0
답변 (1개)
R
2024년 9월 11일
Here's a simple example on how to do achieve this
s = table([1; 2; 3], [4; 5; 6], 'VariableNames', {'A', 'B'});
% Create the new table
t = array2table([7; 8; 9], 'VariableNames', {'A'});
% Replace column A in table s with table t
s.A = t.A;
disp(s)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!