Multi-Step Prediction using neural networks (ntstool)

조회 수: 3 (최근 30일)
WT
WT 2015년 3월 1일
댓글: Karodine Chreng 2020년 9월 29일
May I know how can i change the following: Ai2 = mat2cell([zeros(10,2); Ai2],[10 1],ones(1,2));
if my delays are 4 and hidden layers are 10. My input data is 9X96 and target is 1X96
Thank You
  댓글 수: 1
Karodine Chreng
Karodine Chreng 2020년 9월 29일
Ai2 = mat2cell([zeros(H,d); Ai2],[H 1],ones(1,d));
H=10, d =4;

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

채택된 답변

Greg Heath
Greg Heath 2015년 3월 2일
You have Ai2 on both sides of the equation.
Therefore, you will get an error when Ai2 is not defined previously.
Why don't you just create the matrix version ai2. Then
Ai2 = mat2cell(ai2)
or
Ai2 = {ai2}
Hope this helps.
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