How to read sparse binary file WITHOUT matfile
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I am running 2011a and I need a work around for the "matfile" function, which is only included in 2011b and greater.
I have a sparse matrix A.mat. I want to be able to read in data from the matrix by specific indicies. In 2011b I would do:
matObjA = matfile('A.mat', 'Writable', true)
idx = 2304982; %some specific row index that I want to read
rowOfData = matObjA.A(idx, :);
Can I do this in 2011a using fopen, fseek, fread, or something else? The problem is that I personally don't know how to parse a binary data file that represents a sparse matrix.
Risposte (0)
Vedere anche
Categorie
Scopri di più su Low-Level File I/O in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!