What is the easiest way to embed a text data file into a .m function so that you don't need two files.
7 次查看(过去 30 天)
显示 更早的评论
I have a function that uses a pre-generated lookup table that is stored as a text file. I would like to embed the text file into the .m file so that I don't have to move both files around.
0 个评论
采纳的回答
Guillaume
2018-11-1
编辑:Guillaume
2018-11-1
Load your text file into a variable, however you normally read it in your code, for example:
lookuptable = fileread(yourtextfile);
Then right click on the variable in the variable browser, select 'Save As...' and in the 'Save as type' dropdown change the type from mat file to m file to let matlab autogenerate the code to create that variable.
3 个评论
Guillaume
2018-11-1
Go into matlab preferences and under Workspace increase the Maximum array size threshold to something larger that the size of your variable. Above that threshold matlab indeed resort to saving the variable into a mat file for efficiency / readability.
更多回答(1 个)
Elias Gule
2018-11-1
I guess you can store your data as part of the code. Your may create an inner function or a subfunctions that initializes your lookup table; you can also store your data as properties of a class.
另请参阅
类别
在 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!