필터 지우기
필터 지우기

Write table in matlab

조회 수: 12 (최근 30일)
vo
vo 2022년 12월 9일
답변: Voss 2022년 12월 9일
I have some matrix and i want to save matrix in table in .mat file. How can i do this by code?
for example:
i have matrix A = [3 4 5 6] and matrix B =[ 4 5 6 7]
file 'save.mat' contain table 'data'.
How can i save 2 matrix in 'data' in 1 row like this

답변 (1개)

Voss
Voss 2022년 12월 9일
A = [3 4 5 6];
B = [4 5 6 7];
data = array2table([A B]);
save('save.mat','data')

카테고리

Help CenterFile Exchange에서 Tables에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by