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');
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!