Save Features Extracted in one row/column and save it as .mat file
조회 수: 1 (최근 30일)
이전 댓글 표시
How will I save this in one row or column in a .mat file?
댓글 수: 5
Massimo Zanetti
2016년 9월 27일
What is this precisely? Is it a Matlab variable? Have you got all these values in a vector?
채택된 답변
Massimo Zanetti
2016년 9월 27일
Ok, so define your vectors and save them as follows:
FEATURES={'MEAN','SD','RMS',...};
VALUES=[66.2561,78.0825,11.0548,...];
save('myFeatureFile.mat','FEATURES','VALUES');
댓글 수: 4
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!