Using save(filename,variables,'-append') is fine. The format save(filename, '-append', '-struct', 'data'); saves the fields of the stuct data as individual variables in the mat file, see "Save Structure Fields as Individual Variables" on the save help page https://www.mathworks.com/help/matlab/ref/save.html
Write to a file in fileEnsembleDatastore
2 次查看(过去 30 天)
显示 更早的评论
Hello! in the relevant examples for writing data to files in fileEnsembleDatastore, the write function has the format:
function writeNewData(filename,data)
save(filename, '-append', '-struct', 'data');
end
What if I want to write variable names using save like:
Kindly guide how I will use the writeToLastMemberRead function to save the variables to files in fileEnsembleDatastore instead of saving data in structure form as required by the format of the writeNewData function given above.
0 个评论
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Workspace Variables and MAT-Files 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!