how to do element wise multiplication of 2 columns in array?

4 views (last 30 days)
how to do element wise multiplication of 2 columns in array?

Accepted Answer

Matt J
Matt J on 18 Nov 2021
For example,
A=randi(10,5,2)
A = 5×2
1 10 4 8 6 7 4 5 7 5
A(:,1).*A(:,2)
ans = 5×1
10 32 42 20 35

More Answers (0)

Categories

Find more on Resizing and Reshaping Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!