Write to a file in fileEnsembleDatastore

조회 수: 1 (최근 30일)
M. Mubashir Hussain
M. Mubashir Hussain 2019년 5월 15일
답변: Alec Stothert 2019년 12월 17일
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:
save(filename,variables,'-append')
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.

답변 (1개)

Alec Stothert
Alec Stothert 2019년 12월 17일
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

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by