Save Features Extracted in one row/column and save it as .mat file
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hazel Sialongo
le 27 Sep 2016
Commenté : Hazel Sialongo
le 27 Sep 2016
How will I save this in one row or column in a .mat file?
5 commentaires
Massimo Zanetti
le 27 Sep 2016
What is this precisely? Is it a Matlab variable? Have you got all these values in a vector?
Réponse acceptée
Massimo Zanetti
le 27 Sep 2016
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 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!