| Contents | Index |
text = fileread(filename)
text = fileread(filename) returns the contents of the file filename as a MATLAB string.
Read and search the file Contents.m in the MATLAB iofun directory for the reference to fileread:
% find the correct directory and file
io_contents = ...
fullfile(matlabroot, 'toolbox', 'matlab', 'iofun', 'Contents.m');
% read the file
filetext = fileread(io_contents);
% search for the line of code that includes 'fileread'
% each line is separated by a newline ('\n')
expr = '[^\n]*fileread[^\n]*';
fileread_info = regexp(filetext, expr, 'match');
fgetl | fgets | fread | fscanf | importdata | textscan | type

Explore how to use MATLAB to make advancements in engineering and science.
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |