help understanding simple Vectorization

Hi,
I am new to vectorization and would appreciate if someone could help me vectorize the following;
for i = 1: length(A)
idx = A(i,1);
C(i) = A(i,1)*B(idx);
end

1 Comment

Please provide an example data. Sometimes the size (of the data) does matter.

Sign in to comment.

 Accepted Answer

C=A(:,1).*B(A(:,1))

3 Comments

for some reason this didnt work for me
I tried and it gave the same result as your code, like Fangjun said you should provide one example for us to test.
im sorry it works
my syntax was wrong
example
A = [1 2; 1 3; 1 6; 2 2; 2 6; 3 9]
B = [2 5 9]

Sign in to comment.

More Answers (0)

Categories

Find more on Simulink 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!