├── .gitignore ├── AUTHORS ├── LICENSE.md ├── NeuralNet2.m ├── NeuralNetApp.m ├── README.md └── demos └── demo_nn.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackOverflowMATLABchat/NeuralNetPlayground/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackOverflowMATLABchat/NeuralNetPlayground/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackOverflowMATLABchat/NeuralNetPlayground/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NeuralNet2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackOverflowMATLABchat/NeuralNetPlayground/HEAD/NeuralNet2.m -------------------------------------------------------------------------------- /NeuralNetApp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackOverflowMATLABchat/NeuralNetPlayground/HEAD/NeuralNetApp.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackOverflowMATLABchat/NeuralNetPlayground/HEAD/README.md -------------------------------------------------------------------------------- /demos/demo_nn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackOverflowMATLABchat/NeuralNetPlayground/HEAD/demos/demo_nn.m --------------------------------------------------------------------------------