Commit 8f2a4467c85b2a17fb2c90c68fca76fc2a79e7c2
1 parent
c351bb6c
Fix typo
Showing
1 changed file
with
1 additions
and
1 deletions
scripts/matlab/loadOpenBR.m
| 1 | 1 | % This script will read a matrix container format where the first two entires are 32-bit ints |
| 2 | 2 | % specifying the number of rows and columns (respectively). The remaining buffer is 32-bit floats |
| 3 | 3 | % with all the matrix contents, in row-major order. |
| 4 | -function [x] = loadBin(filename,reverse) | |
| 4 | +function [x] = loadOpenBR(filename,reverse) | |
| 5 | 5 | |
| 6 | 6 | if nargin < 2, |
| 7 | 7 | % Use this option if the data was serlialized in column-major order. | ... | ... |