フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

how to export analyzed data to access instead of excel based on MATLAB code?

2 ビュー (過去 30 日間)
MAHMOUD ALZIOUD
MAHMOUD ALZIOUD 2017 年 12 月 22 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Dear Guys, I produced some excel tables from a matlab code in which it exports data to excel file in the same folder as my matlab code in. since i have a huge amount of data, can i produce those tables in access instead of excel? the following is my excel generating code:
%Excel Table for Tandem:
Z1={'Station' 'Month' 'Class' 'Total' 'P_6000' 'P_8000'};
D1=[Station', month', q1', Total_Tand_Perc', t1', t2'];
filename = 'ALS_Perc.xlsx';
W1 = table();..., 'VariableNames', varNames);
uc = num2cell(D1, 1);
W1 = table(uc{:}, 'VariableNames', Z1)
writetable(W1,filename,'Sheet',1,'Range','C1')

回答 (0 件)

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by