How do I add a custom transfer function to the neural network transfer function library in Neural Network Toolbox R2013b?

조회 수: 7 (최근 30일)
I would like to know how to add a custom transfer function to the neural network transfer function library.

채택된 답변

MathWorks Support Team
MathWorks Support Team 2013년 10월 18일
You can add your custom transfer function to the Neural Network Transfer Function Block library by using one of the following two methods:
  • Note: Make sure your transfer function.m file meets the requirements given in the Custom Networks section of the Neural Networks User's Guide.
Method A - Graphical Method
1. Type "simulink" at the MATLAB command prompt
2. Double click "Neural Network Toolbox", then right click on "Transfer Function" library and select "Open Transfer Function library".
3. Go to Diagram menu and select "Unlock Library". This will make the library editable.
4. Drag the "Interpretted MATLAB Function" block from "Simulink -> User-Defined Function" in the Simulink Library to this library window.
5. Double click on the "Interpretted MATLAB Function" block, enter the name of your transfer function in the "MATLAB Function" box, then hit OK.
6. Click File/save in the neural/Transfer Function window.
Method B - From the command line
1. Create the following function:
function add_trfcn(fname)
open_system('neural');
open_system('neural/Transfer Functions');
set_param('neural','Lock','off')
add_block('simulink/User-Defined Functions/Interpreted MATLAB Function',['neural/Transfer' char(13) 'Functions/',fname], 'matlabfcn',fname,'name',fname)
 
2. Call it with the name of your transfer function.
For example:
add_trfcn('mytf')

추가 답변 (1개)

amin ya
amin ya 2018년 7월 22일
Error writing failed. Permission denied

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

제품


릴리스

R2013b

Community Treasure Hunt

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

Start Hunting!

Translated by