How to extract processed data from a .exe file created using matlab into a more accesible format (e.g.- .txt, .xls, etc.)

5 vues (au cours des 30 derniers jours)
I have a matlab code for simulating pulse propogation in an optical fibre. I made a .exe file using the mcc command and deploy tool in matlab for that code. Now i want to get the result of the simulation in the form of numbers so that one can do his/her own analysis using those numbers and does not need matlab for it.The idea is to be able to run the .exe file and extract the results in a generic format on a computer without matlab. Can this be done? Please help! Thanks.

Réponse acceptée

Sid
Sid le 1 Juil 2015
Modifié(e) : Sid le 1 Juil 2015
There are a couple of different options like writetable ( doc writetable ) and fprintf ( doc fprintf .)
writetable is a very easy option to do a lot of things as long as you are able to have the data in the table format, while fprintf will give more control (and perhaps more suitable for large datasets as discussed here.)
xlswrite ( doc xlswrite ), dlmwrite ( doc dlmwrite ), csvwrite ( doc csvwrite ) are also other options.
Can you add one of these commands and output the values to a file you like? Important things to consider might be how big the files are (check the link for discussion from Jan Simon,) and what kind of data (mixed data - numbers and strings vs. numbers only vs. strings only) you wish to output.
HTH.
  1 commentaire
Amol  Deo
Amol Deo le 2 Juil 2015
Thankyou for the help! I will try writetable and/or fprint and run the program again to see if it works. Thanks again!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Import and Export dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by