how to create a dat file using matlab?
59 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
iam new to matlab.. i have extracted features using HOG. i have 6(mean,varaiance etc) feature values for 100 images.
0 Commenti
Risposte (1)
KSSV
il 13 Ott 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
0 Commenti
Vedere anche
Categorie
Scopri di più su Standard File Formats in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!