where can I find all classification functions like newff newcf newelm and more

4 Ansichten (letzte 30 Tage)
classification functions like newff, newcf, newelm and more

Antworten (1)

Soumya
Soumya am 1 Apr. 2025
Hi Mohammad Mehio,
In MATLAB, several functions are available for creating and training neural networks, especially for classification and function fitting tasks. Although some of these functions have been in use for quite some time, they have become outdated as MATLAB evolved. It is now recommended to adopt newer functions and workflows.
When you type doc newff in the command window, you will see the following message in the documentation:
“Obsoleted in R2010b NNET 7.0. Last used in R2010a NNET 6.0.4.”
This applies to all the functions you mentioned.
Here are some updated alternatives to the functions “newff,” “newcf,” and “newelm,” that you can consider:
  • newff: This function was used to create a feedforward backpropagation network. The function “feedforwardnet” is recommended.
  • newcf: This function was used to create a cascade-forward backpropagation network. The function “cascadeforwardnet” is recommended.
  • newelm: This function was used to create an Elman recurrent network. The function “elmannet” can be used instead.
Please refer to the following documentation to know more about deep learning tools and functions:
1) MATLAB Deep Learning Toolbox Documentation:
2) Function related resources and documentations:
I hope this helps you in finding the classification functions!

Kategorien

Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by