Effacer les filtres
Effacer les filtres

how to multiplying two matrices in following way

1 vue (au cours des 30 derniers jours)
mahesh chathuranga
mahesh chathuranga le 4 Oct 2013
my first matrix is
a=[1 2;
3 4;
5 6];.my second matrix is
b=[3 5;
0 2;
5 7];.
I want to obtain
c=[3 10;
0 8;
25 42;];.how can i do this.

Réponse acceptée

Image Analyst
Image Analyst le 4 Oct 2013
Modifié(e) : Image Analyst le 4 Oct 2013
c = a .* b;
The dot before the * is important. Otherwise you'd be doing a matrix multiplication, not an element by element multiplication.

Plus de réponses (0)

Catégories

En savoir plus sur Data Types dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by