Effacer les filtres
Effacer les filtres

newff function does not appear in 2023b version

35 vues (au cours des 30 derniers jours)
María
María le 7 Nov 2023
Commenté : María le 13 Nov 2023
Hello! I'm starting to learn MatLab in university and I have a problem. My teacher gave us a formula that starts with:
nn1 = newff(minmax(input),[3,1],{'tansig','purelin'},'trainlm');
Everytime that I run the code it says that newff doesn't function in this version anymore.
Can anyone help me to rewrite that line of code please, I really don't know anything about the program.
I have the 2023b student version.

Réponse acceptée

Walter Roberson
Walter Roberson le 7 Nov 2023
No, the last time newff was documented was R2010a. The teacher needs to rewrite the lab.
  2 commentaires
Steven Lord
Steven Lord le 7 Nov 2023
It still exists in Deep Learning Toolbox, but Walter is correct that it was last documented/used in release R2010a (back when that toolbox was named Neural Network Toolbox.)
which -all newff
/MATLAB/toolbox/nnet/nnet/nnnetwork/newff.m
dbtype 1:5 newff.m
1 function out1 = newff(varargin) 2 %NEWFF Create a feed-forward backpropagation network. 3 % 4 % Obsoleted in R2010b NNET 7.0. Last used in R2010a NNET 6.0.4. 5 % The recommended function is feedforwardnet.
If you receive an "undefined function" error, you likely don't have Deep Learning Toolbox installed. To check this, use the ver function. If it doesn't list Deep Learning Toolbox, neither newff nor the replacements Walter suggested will be available.
ver nnet
----------------------------------------------------------------------------------------------------- MATLAB Version: 23.2.0.2436196 (R2023b) Update 4 MATLAB License Number: 0 Operating System: Linux 5.4.233-0504233-generic #202302250651 SMP Sat Feb 25 12:26:27 UTC 2023 x86_64 Java Version: Java 1.8.0_292-b10 with AdoptOpenJDK OpenJDK 64-Bit Server VM mixed mode ----------------------------------------------------------------------------------------------------- Deep Learning Toolbox Version 23.2 (R2023b)
which -all fitnet
/MATLAB/toolbox/nnet/nnet/nnnetwork/fitnet.m
which -all feedforwardnet
/MATLAB/toolbox/nnet/nnet/nnnetwork/feedforwardnet.m
But I second Walter's recommendation to recommend the professor update the lab exercise. There have been a lot of improvements to Deep Learning Toolbox in the 13+ years since that lab was written.
María
María le 13 Nov 2023
Thank you!!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Image Data Workflows dans Help Center et File Exchange

Produits


Version

R2023b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by