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 Center および File ExchangeDeep Learning Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by