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

 Accepted Answer

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 Vehicle Dynamics Blockset in Help Center and File Exchange

Asked:

on 18 Nov 2021

Answered:

on 18 Nov 2021

Community Treasure Hunt

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

Start Hunting!