Effacer les filtres
Effacer les filtres

Multiply each column by a elements of cell array

2 vues (au cours des 30 derniers jours)
lucksBi
lucksBi le 13 Juin 2017
Commenté : lucksBi le 13 Juin 2017
hey
i have a matrix like this:
matrix=
0 2 4
3 0 0
0 1 0
3 0 1
0 0 0
and cell array: mul={1,1,0.6,0.6,0.3}
i want to multiply all columns by 'mul' and then add. e.g. [0x1 + 3x1 + 0x0.6 + 3x0.6 + 0x0.3] and same for all other columns.
Thanks

Réponse acceptée

KSSV
KSSV le 13 Juin 2017
matrix=[0 2 4
3 0 0
0 1 0
3 0 1
0 0 0];
mul={1,1,0.6,0.6,0.3} ;
iwant = sum(bsxfun(@times,matrix,[mul{:}]'))
  2 commentaires
lucksBi
lucksBi le 13 Juin 2017
Modifié(e) : lucksBi le 13 Juin 2017
Thanks alot. Will it be same if matrix is a cell array instead of 2D?
KSSV
KSSV le 13 Juin 2017
No...it is better to work with matrices. I suggest to convert your mul to matrix.

Connectez-vous pour commenter.

Plus de réponses (2)

Guillaume
Guillaume le 13 Juin 2017
Conceptually it would make a lot more sense for your cell array to be a column rather than a row.
Anyway, the easiest way to do what you want is to convert your cell array into a column vector. It is then trivial to multiply it with the matrix:
result = sum(matrix .* cell2mat(mul')); %requires R2016b or later
%in <R2016b: result = sum(bsxfun(@times, matrix, cell2mat(mul')));
  1 commentaire
lucksBi
lucksBi le 13 Juin 2017
Yes Thanks alot for suggestion but it was kind of requirement. Thanks for your time.

Connectez-vous pour commenter.


Andrei Bobrov
Andrei Bobrov le 13 Juin 2017
result = matrix.'*cat(1,mul{:});
or
result = [mul{:}]*matrix;
  1 commentaire
lucksBi
lucksBi le 13 Juin 2017
Thank You for helping. @Andrei Bobrov

Connectez-vous pour commenter.

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by