Skip to content

Commit

Permalink
fix a minor bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sth4nth committed May 31, 2017
1 parent b72f9a6 commit 75f3cdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chapter05/mlp.m
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
for l = 1:L-1
W{l} = randn(h(l),h(l+1));
end
Z = cell(L);
Z = cell(1,L);
Z{1} = X;
maxiter = 200;
mse = zeros(1,maxiter);
Expand Down

0 comments on commit 75f3cdf

Please sign in to comment.