Filter löschen
Filter löschen

.mat file to csv.

2 Ansichten (letzte 30 Tage)
Chidiebere Ike
Chidiebere Ike am 14 Mai 2018
Kommentiert: sloppydisk am 14 Mai 2018
I have a mat file named (bag.mat) with value 1*1 bagOfFeature on my workspace. I want to write it into csv files. I have tried csvwrite function but i got the error:
c = load('bag.mat'); %On my workspace, c has a value of 1*1 struct csvwrite('file.csv', c);
Error using csvwrite (line 47)
Undefined function 'real' for input arguments of type 'struct'.
Attaching my mat file.
I will appreciate your assistance.
Thanks you
  1 Kommentar
sloppydisk
sloppydisk am 14 Mai 2018
csvwrite only takes matrices as input, bagOfFeatures is a struct. You should specify what you want your output to look like. You could for example extract some parameters from the struct like this:
csvwrite('mybagdata.csv', [bag.VocabularySize; bag.GridStep'; BlockWidth']);
Or you could use fprintf to write headers too.

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by