Question on "newlind" from Neural Network Toolbox
Mostrar comentarios más antiguos
Dear community,
I would like to know what algorithm exactly (LMS ?) describes the matlab estimation function newlind. http://www.mathworks.de/de/help/nnet/ref/newlind.html
The documentation of Matlab does not offer full disclosure on the function, but only what it does. More info very appreciated.
Kind regards
Respuesta aceptada
Más respuestas (3)
Greg Heath
el 14 de Sept. de 2014
Use the type command:
type newlind
Hope this helps
Thank you for formally accepting my answer
Greg
Erol H
el 21 de Sept. de 2014
0 votos
Star Strider
el 21 de Sept. de 2014
- newlind calculates weight W and bias B values for a linear layer from inputs P and targets T by solving this linear equation in the least squares sense:
[W b] * [P; ones] = T
So the answer to your question is: Yes. ‘Least squares’ means ‘least sum of squares’ that is essentially least mean squares. (It doesn’t take the mean but the result is essentially the same.)
Categorías
Más información sobre Deep Learning Toolbox en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!