Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

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

2 visualizaciones (últimos 30 días)
MAHMOUD ALZIOUD
MAHMOUD ALZIOUD el 22 de Dic. de 2017
Cerrada: MATLAB Answer Bot el 20 de Ag. de 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')

Respuestas (0)

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by