writing bin data to *.dat file
Show older comments
Hey everybody,
again I couldn't find the right solution and need your wise counsel ;)
I have a binary vector i.e. like this: x = rand(50,1)*7; x = fi(x,false,3,0) x = bin(x);
Now I want to write this to a dat file. I acutally thought I could use dlmwrite('test.dat', x, 'newline', 'pc') but if x = [101 ; 110 ; 001 ; 011 ; ...]
the test.dat file looks like this: 1,0,1 1,1,0 0,0,1 0,1,1 . . .
and not like I would like to have it: 101 110 001 011 . . .
Any idea how I can teach dlmwrite to neglect the commas while still using the newline parameter? Should I probably use some other function?
Beste regards and thanks in advance,
Lennart
Accepted Answer
More Answers (0)
Categories
Find more on Text Files in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!