how to create a dat file using matlab?
Afficher commentaires plus anciens
iam new to matlab.. i have extracted features using HOG. i have 6(mean,varaiance etc) feature values for 100 images.
Réponses (1)
KSSV
le 13 Oct 2016
data = rand(100,2) ; % some random data
save 'myfile.dat' data -ascii % save to myfile.dat
load myfile.dat % load the file
doc save
Catégories
En savoir plus sur Standard File Formats dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!