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

1 次查看(过去 30 天)
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 CenterFile Exchange 中查找有关 Mathematics 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by