How to implement fitnet.m in MATLAB R2007?
2 次查看(过去 30 天)
显示 更早的评论
Hi All
Is there a way to introduce the fitnet function in MATLAB R2007, despite it's introduced in R2010 ?
0 个评论
采纳的回答
Greg Heath
2018-7-8
There may be licensing problems. Otherwise just use NEWFF. It's old but it is pretty good.
Greg
5 个评论
Greg Heath
2018-7-24
1. Apparently your first problem was using NEWFF instead of newff.
2. There is absolutely no reason why rng(0) should throw an error. It is just an alternate way to initialize the random number generator
>> rng(0), rand
ans =
0.8147
>> rng('default'), rand
ans =
0.8147
Hope this helps,
Greg
Walter Roberson
2018-7-24
rng() was added in R2011a, replacing the use of rand or randn with the 'seed', 'state' or 'twister' inputs
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Modeling and Prediction with NARX and Time-Delay Networks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!