Multiplication with in a double arrray

2 vues (au cours des 30 derniers jours)
Jonathan Drane
Jonathan Drane le 7 Avr 2020
Hi, this is my first question so go easy on me please I am a new Matlab user.
I have searched arround the help section and cannot seem to find the answer I am after.
I have some numerical data in a 4096x2 double array and I would like to multiply each cell by another cell in the array to make a new cell and turn the array into a 4096x3 array.
Eg.
A1=1 B1=1 C1=A1*B1
A2=2 B2=2 C2=A2*B2
A3=3 B3=3 C2=A3*B3
Thanks in advance for the help

Réponse acceptée

James Tursa
James Tursa le 7 Avr 2020
Modifié(e) : James Tursa le 8 Avr 2020
M = your 4096x2 double matrix
M(:,3) = M(:,1) .* M(:,2);
  1 commentaire
Jonathan Drane
Jonathan Drane le 8 Avr 2020
James, Thanks so much for this answer it works exaclty as required.

Connectez-vous pour commenter.

Plus de réponses (1)

madhan ravi
madhan ravi le 7 Avr 2020
Wanted = [A,B,A.*B]

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Produits


Version

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by