How to combine 2 single column variables in to 1 double column variable and output it to a csv or txt file with a header for each column?

조회 수: 5 (최근 30일)
I have 2 variables that are 262144 rows by 1 column, variable names are "Freq" and "amp". I'm trying to combine them into a single variable of 262144 rows by 2 columns and have header at the top row of each column output to a txt or csv file. I've been through many answers on here to combine and output the results but i can't seem to make it work for me.

채택된 답변

Dyuman Joshi
Dyuman Joshi 2023년 4월 26일
var1 = rand(262144,1);
var2 = rand(262144,1);
T = table(var1,var2,'VariableNames',{'header1', 'header2'});
writetable(T,'filename.csv')

추가 답변 (0개)

카테고리

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

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by