Azzera filtri
Azzera filtri

How can i multiply each value from a row to each value of another row.

4 visualizzazioni (ultimi 30 giorni)
Example: A = [1 2 3]
B = [ 4 5 6]
Answer:[ 4 10 18]

Risposta accettata

Ameer Hamza
Ameer Hamza il 31 Ott 2020
Modificato: Ameer Hamza il 31 Ott 2020
A = [1 2 3]
B = [4 5 6]
Answer = A.*B
Result
>> Answer
Answer =
4 10 18

Più risposte (0)

Categorie

Scopri di più su Get Started with MATLAB in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by