フィルターのクリア

how to multiply the input vector and weight matrix (X*iw+b)

1 回表示 (過去 30 日間)
prabakaran jayaraman
prabakaran jayaraman 2015 年 6 月 24 日
回答済み: Greg Heath 2015 年 8 月 28 日
Mr greg suggested output = repmat(b2,1,N) + LW*tanh(repmat(b1,1,N)+ IW*input). in this equation i am having 3 input and iw matrix of size 20X3.how to multiply three inputs vector and weight matrix

採用された回答

Greg Heath
Greg Heath 2015 年 8 月 28 日
The MAT in MATLAB stands for MATRIX. If
size(IW) = [ 20 3 ]
size(x) = [ 3 N ]
Then the matrix multiplication command yields
size(IW*x) = [ 20 N ];
Hope this helps.
Thank you for formally accepting my answer
Greg

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMathematics についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by