필터 지우기
필터 지우기

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