Skip to content

Commit

Permalink
fix a minor bug
Browse files Browse the repository at this point in the history
sth4nth committed May 31, 2017

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
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
@@ -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);

0 comments on commit 75f3cdf

Please sign in to comment.