How to extract processed data from a .exe file created using matlab into a more accesible format (e.g.- .txt, .xls, etc.)
5 次查看(过去 30 天)
显示 更早的评论
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.
0 个评论
采纳的回答
Sid
2015-7-1
编辑:Sid
2015-7-1
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.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Text Files 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!