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.

Antworten (1)

KSSV
KSSV am 13 Okt. 2016

3 Stimmen

data = rand(100,2) ; % some random data
save 'myfile.dat' data -ascii % save to myfile.dat
load myfile.dat % load the file
doc save

Kategorien

Tags

Gefragt:

am 12 Okt. 2016

Beantwortet:

am 13 Okt. 2016

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by