Cursera: machine learning ex6.

This commit is contained in:
Vahagn Khachatryan
2015-03-21 11:35:11 +04:00
parent 97bf613378
commit 29c396874e
28 changed files with 3870 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
function file_contents = readFile(filename)
%READFILE reads a file and returns its entire contents
% file_contents = READFILE(filename) reads a file and returns its entire
% contents in file_contents
%
% Load File
fid = fopen(filename);
if fid
file_contents = fscanf(fid, '%c', inf);
fclose(fid);
else
file_contents = '';
fprintf('Unable to open %s\n', filename);
end
end