actxserver excel application

13 visualizzazioni (ultimi 30 giorni)
Richard
Richard il 2 Dic 2011
Modificato: Walter Roberson il 23 Mag 2022
Can anyone give me a simple explanation of how to use actxserver to import data from matlab. I have a working code by using loops and xlsread but the running time is way too long. All I understand about actxserver is that it will save time as it doesn't open and close excel every time it goes through the loop.
I've got this far:
hExcel = actxserver('Excel.Application');
hExcel.visible = 1; % If you want Excel visible.
hExcel.DisplayAlerts = false; % Avoid excel warning popups
Which basically just opens excel. I now need to get some data...

Risposta accettata

Jan
Jan il 2 Dic 2011
  4 Commenti
Fangjun Jiang
Fangjun Jiang il 2 Dic 2011
Yes, to loop through different files, it's better to provide the full path of the files.
To read all the data in the sheet without specifying the range, use
MyRange=Sheet.UsedRange;
MyData=MyRange.Value;
Richard
Richard il 2 Dic 2011
great.

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by