Error in append dot structure mat file
2 views (last 30 days)
Show older comments
balandong
on 3 May 2017
Commented: Walter Roberson
on 3 May 2017
Dear all, I have data store in a mat file (i.e.,subject01_dataset.mat) . Under the mat file, each data were store 1) Patient_FullData.auxilaryData 2) Patient_FullData.reshape
After some processing, I want to store the result as Patient_FullData.result Thus the following line were utilized
save ('SC4001E0_dataset.mat', 'Patient_FullData.result', '-append');
However, I got the following error
'Patient_FullData.data' is not a valid variable name.
May I know how to mitigate this issue
0 Comments
Accepted Answer
Walter Roberson
on 3 May 2017
You cannot save() a field in a structure, and you cannot use save() to appened to an existing struture.
If you need to appened on to an existing array in a .mat file, consider using matFile()
2 Comments
Walter Roberson
on 3 May 2017
matFile() is the defined way to append to an existing variable in a .mat file.
More Answers (0)
See Also
Categories
Find more on Workspace Variables and MAT Files in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!