How to Debug Matlab & Excel at the same time ?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi ! I'm currently using Matlab and Excel together with Matlab Builder Ex.
I have some questions : is there a way to debug both Matlab & Excel codes at the same time ? I mean can we use the link between the two codes and see where the bug is happening in the process ?
For example, we compile everything and if there's a bug, either in the excel code or the matlab code, we can pinpoint it directly in excel or in matlab.
And if it's possible, is there a way to see the process of the code and the moments when it passes from excel to matlab and from matlab to excel ?
Thanks in advance for your answers
Alexandre.
0 Kommentare
Antworten (2)
Titus Edelhofer
am 30 Mär. 2015
Hi Alexendre,
really debugging the compiled code will not work. An easy way to find out "who to blame" is to add a "save" command at the beginning of your MATLAB function, something like
if isdeployed
save('C:\temp\inputFromExcel.mat');
end
Then run your code from Excel, and take a look (in MATLAB) at the variables in the generated .mat file. Debug the code in MATLAB using these datat, and see what the results are ...
Titus
0 Kommentare
Siehe auch
Kategorien
Mehr zu Data Import from MATLAB finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!