how to create a dat file using matlab?
显示 更早的评论
iam new to matlab.. i have extracted features using HOG. i have 6(mean,varaiance etc) feature values for 100 images.
回答(1 个)
KSSV
2016-10-13
data = rand(100,2) ; % some random data
save 'myfile.dat' data -ascii % save to myfile.dat
load myfile.dat % load the file
doc save
类别
在 帮助中心 和 File Exchange 中查找有关 Standard File Formats 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!