Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

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

2 vues (au cours des 30 derniers jours)
MAHMOUD ALZIOUD
MAHMOUD ALZIOUD le 22 Déc 2017
Clôturé : MATLAB Answer Bot le 20 Août 2021
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')

Réponses (0)

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by