What is the easiest way to embed a text data file into a .m function so that you don't need two files.

조회 수: 13 (최근 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.

채택된 답변

Guillaume
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
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
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.
  댓글 수: 1
Zeb Barber
Zeb Barber 2018년 11월 1일
I am trying to avoid having to write a function that reformats the text (300 lines long) into MATLAB code that can be pasted into an m-file. Really just trying to get around having to cart around an extra file to make the m-file work.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Text Files에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by