how to find the weighted sum of two matrices of order 2778x6, the same is like this. any suggestion.

Answers (1)

I assume, you want to calculate the sum of each matrix element. Weights are defined for each matrix (and usually sum up to 1). Then this is, e.g.:
C = 0.1*A + 0.9*B
If you want to have weights for each element (in A and B), this is:
w = rand(size(A)) % a random weight matrix
C = w.*A + w.*B

Categories

Find more on Deep Learning Toolbox in Help Center and File Exchange

Products

Release

R2013a

Asked:

on 16 Aug 2018

Answered:

on 16 Aug 2018

Community Treasure Hunt

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

Start Hunting!