initial commit

This commit is contained in:
2017-05-28 16:07:48 +09:00
commit 4620fe8652
25 changed files with 3626 additions and 0 deletions

17
ex5/featureNormalize.m Normal file
View File

@@ -0,0 +1,17 @@
function [X_norm, mu, sigma] = featureNormalize(X)
%FEATURENORMALIZE Normalizes the features in X
% FEATURENORMALIZE(X) returns a normalized version of X where
% the mean value of each feature is 0 and the standard deviation
% is 1. This is often a good preprocessing step to do when
% working with learning algorithms.
mu = mean(X);
X_norm = bsxfun(@minus, X, mu);
sigma = std(X_norm);
X_norm = bsxfun(@rdivide, X_norm, sigma);
% ============================================================
end