Bad documentation help function
1 次查看(过去 30 天)
显示 更早的评论
So I was looking at the docs(https://www.mathworks.com/help/deeplearning/ug/neural-network-object-properties.html) and saw this..
help(net.divideFcn)
This is incorret!
What help function do I use to check the property of an train the Network??
I tried this but don't work
help net.divideFcn
0 个评论
回答(1 个)
Steven Lord
2020-5-4
help net.divideFcn
attempts to get help for the function whose name is divideFcn in the package folder named net.
help(net.divideFcn)
attempts to get help for the function whose name is returned by the function divideFcn in the package folder named net, whose name is stored in the divideFcn property of the object stored in the variable net, or whose name is stored in the divideFcn field of the struct array stored in the variable net.
These are two very different things.
2 个评论
Tommy
2020-5-4
The difference is similar to the difference between
>> help sum
sum Sum of elements.
S = sum(X) is the sum of the elements of the vector X. If X is a matrix,
...
which displays help for the function sum(), and
>> help(sum)
Error using sum
Not enough input arguments.
which first evaluates sum and then displays help for whatever the output was.
help(net.divideFcn)
This line is intended to be run when you have a neural network object called net. Neural network objects have a property named divideFcn which "defines the data division function to be used when the network is trained using a supervised algorithm" (from here). So the above line first evaluates net.divideFcn to obtain the data division function, and it then displays help for whatever that data division function is.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Pattern Recognition and Classification 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!