All Questions
3 questions
0
votes
0
answers
31
views
Correctly read binary data encoded in variable-lengths
I'm trying to read a binary data file containing time-series data in Matlab.
Sample data: [23,-10,47,19,-417,-434,-1,29,11,22,23,6,18,13,-383]
Command: fopen(filename,'r','ieee-le');
When I read the ...
0
votes
3
answers
1k
views
MATLAB reading to the end of a binary file
I think the solution will be quite simple for somebody with some MATLAB knowhow however I do not know how to do it.
I have a binary file that I am reading with fread and I am reading the first 4 ...
0
votes
2
answers
2k
views
Convert a rectangular binary matrix to a graph? [closed]
I know for the fact that square binary matrix can be converted to a graph. For example using gplot in matlab matrix below can be converted to the graph
0 1 1
1 0 0
0 1 0
can be represented by a ...