📄 freadu8.m
字号:
function a = freadu8(name,offset,numbytes)
%FREADU8 Read bytes from a file into a uint8 array.
% A = FREADU8(FNAME, OFFSET, NUMBYTES) reads NUMBYTES from the
% file FNAME starting at OFFSET. A is returned as a uint8
% column array. Note that the length of A is the number of
% bytes successfully read, which may be less than NUMBYTES.
%
% OFFSET defaults to 0. If NUMBYTES is not specified, FREADU8
% reads from OFFSET to the end of the file.
% Copyright (c) 1984-98 by The MathWorks, Inc.
% $Revision: 1.4 $ $Date: 1997/11/21 23:35:58 $
error('Missing MEX-file FREADU8');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -