mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-06-22 02:14:28 +10:00
9 lines
149 B
Matlab
9 lines
149 B
Matlab
% load_raw.m
|
|
% David Rowe 7 Oct 2009
|
|
|
|
function s = load_raw(fn, len=Inf)
|
|
fs=fopen(fn,"rb");
|
|
s = fread(fs,len,"short");
|
|
fclose(fs);
|
|
endfunction
|