Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

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

2 views (last 30 days)
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')

Answers (0)

This question is closed.

Community Treasure Hunt

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

Start Hunting!