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

조회 수: 4 (최근 30일)
mohammad mehio
mohammad mehio 2022년 5월 17일
답변: Soumya 2025년 4월 1일
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