From 989115ee5aa1630d9b0bbc99b7a5d7e8ecddc949 Mon Sep 17 00:00:00 2001 From: Bruce Haydon <100446562+brucehaydon@users.noreply.github.com> Date: Sat, 12 Mar 2022 09:48:29 -0500 Subject: [PATCH] Update estimateGaussian.m --- StanfordML/W9_Anamoly_MovieRanking/estimateGaussian.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StanfordML/W9_Anamoly_MovieRanking/estimateGaussian.m b/StanfordML/W9_Anamoly_MovieRanking/estimateGaussian.m index eecf3c3..aadc8b4 100644 --- a/StanfordML/W9_Anamoly_MovieRanking/estimateGaussian.m +++ b/StanfordML/W9_Anamoly_MovieRanking/estimateGaussian.m @@ -5,7 +5,7 @@ % The input X is the dataset with each n-dimensional data point in one row % The output is an n-dimensional vector mu, the mean of the data set % and the variances sigma^2, an n x 1 vector -% +% Bruce Haydon (#brucehaydon) % Useful variables [m, n] = size(X);