xlsread and MATLAB engine Question

1 Ansicht (letzte 30 Tage)
Caroline
Caroline am 12 Jul. 2013
Is it possible to use the xlsread function through the MATLAB engine? For example, can I read an excel spreadsheet into a cell array in MATLAB then send that cell array to C++? Would MEX files be better in this situation?

Akzeptierte Antwort

James Tursa
James Tursa am 12 Jul. 2013
You can use xlsread in a MATLAB Engine and then send it to your C++ program. Note that all data sent between the Engine and your C++ program is copied, however (doubles the memory footprint). A mex file can also use xlsread via a mexCallMATLAB call. The advantage is that the data copy can be avoided since the mex routine shares the same address space as the MATLAB program that called it.
  2 Kommentare
Caroline
Caroline am 12 Jul. 2013
Thank you! If I am making an executable out of the C++ file, in order to run it if it includes MEX files, is all that is needed on the machine that is running the executable the MCR? Or does MATLAB need to be installed?
James Tursa
James Tursa am 12 Jul. 2013
Bearbeitet: James Tursa am 12 Jul. 2013
If you are deploying your MATLAB program via the MCR route and your C++ code is a mex routine, then only the MCR is needed, along with any libraries that the mex routine needs. You may need to jump through some hoops to get all the necessary mex stuff included in your deployment package. If you are using an Engine, then MATLAB has to be installed on the target machine (the Engine is just a full MATLAB program that starts in a special way to communicate with your program).

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Caroline
Caroline am 15 Jul. 2013
Thank you!

Kategorien

Mehr zu Call C++ from MATLAB finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by