Commit 451e906af53dc568f09cfd8e80fbd9f71921a6ff

Authored by bklare
1 parent b57870af

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.
... ...