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 Center および File ExchangeWhos についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by