Writing a struct into a text file (.sto file)

조회 수: 1 (최근 30일)
Mohammadhossein Akhavanfar
Mohammadhossein Akhavanfar 2018년 2월 7일
댓글: Rory Turnbull 2020년 3월 27일
Hi, I have a 1*1 struct like this:
str =
data: [11x31 double]
textdata: {15x31 cell}
colheaders: {1x31 cell}
I want to write this struct into a .sto file. An example of this .sto file generated by OpenSim software is like this:
When I import the above .sto file in MATLAB, I got a 1*1 struct like what I produced. Now I want to write my struct into a .sto file. I appreciate it if you could help me we this.

답변 (1개)

Prajit T R
Prajit T R 2018년 2월 22일
Hi
I understand that you wish to convert a struct into a text file. Convert the struct to a table and then use the function write2table as follows:
writetable(struct2table(str), 'str.txt')
You can convert the structure to .txt,.csv and .dat using this method. I'm not certain about .sto files.
Cheers

카테고리

Help CenterFile Exchange에서 Scope Variables and Generate Names에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by