필터 지우기
필터 지우기

How can I use customnet to define a nonlinearity estimator with the unknow parameters

조회 수: 1 (최근 30일)
When I use Hammerstein-Wiener model, I want to define a nonlinearity estimator with the unknow parameters,which as the picture shows.
But I cannot run it rightly. I am confuse how to define the nonlinearity estimator with the unknow parameters. If it is unable to define this function, how the function of idpoly works which needs to decide the coefficients.
The code uses customnet is as follows:
H1=@sigmoid_first;
InNet=customnet(H1,'NumberOfUnits',10);
The code of sigmoid_first is as follows: function [f g a]=sigmoid_first(x,coeff_beta)
f=coeff_beta(3)+coeff_beta(4)./(1+exp(-(coeff_beta(1)*x+coeff_beta2))); g=coeff_beta(1)*coeff_beta(4)*exp(-(coeff_beta(1)*x+coeff_beta(2)))./(1+exp(-(coeff_beta(1)*x+coeff_beta(2)))).^2; a=0.2;
Could somebody solve this problem? Thank you very much!

답변 (0개)

카테고리

Help CenterFile Exchange에서 Configure Simulation Conditions에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by