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

4 次查看(过去 30 天)
classification functions like newff, newcf, newelm and more

回答(1 个)

Soumya
Soumya 2025-4-1
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!

类别

Help CenterFile Exchange 中查找有关 Deep Learning Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by