How can I solve the following problem?

조회 수: 5 (최근 30일)
Seyed Mohammad
Seyed Mohammad 2014년 4월 17일
답변: Greg Heath 2014년 4월 19일
I got the model which is 1/s^2+s+1 I used c2d to make it as discrete domain
y(k)=a1y(k-1)+a2y(k-2)+a3u(k)+a4u(k-1)+a5u(k-2)
%y(k)—the output of the system of k time
%u(k)—the control input of K time
%ai —known constants of System model
X = [x1,x2,x3,x4,x5]'
I try to compute the out put of hidden layer of RBF NN which is
hj = exp(-(( norm(X-cj))^2./bj^(2)));
Please kindly let me know how solve this
Thank you
  댓글 수: 2
Azzi Abdelmalek
Azzi Abdelmalek 2014년 4월 17일
What is X?
Seyed Mohammad
Seyed Mohammad 2014년 4월 17일
편집: Image Analyst 2014년 4월 17일
Where:
xi=y(k-i) i=1,2,3
xj=u(k- j +3) j=4,5,6
then
X=[x1,x2,x3,x4,x5]

댓글을 달려면 로그인하십시오.

채택된 답변

Greg Heath
Greg Heath 2014년 4월 19일
I do not understand what you are doing.
The obvious model to use is a narxnet with no hidden layers:
net = narxnet(0:2,1:2,[]);
help narxnet
doc narxnet
Search on
greg narxnet
Hope this helps.
Thank you for formally accepying my answer
Greg

추가 답변 (0개)

카테고리

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