how to multiply one array of vector in another ?

1 visualización (últimos 30 días)
Amin Gan
Amin Gan el 10 de Feb. de 2016
Comentada: Star Strider el 10 de Feb. de 2016
There are two same size vectors,A and B (1*2000 in size).
for each value of A must be used in equation below for all B values:
equation=A+A^2+B
for example:
A=[1 2 3]
B=[10 20 30]
I want following results:
1+1^2+10 , 1+1^2+20, 1+1^2+30
2+2^2+10 , 2+2^2+20, 2+2^2+30
3+3^2+10 , 3+3^2+20, 3+3^2+30
But, A and B both are 2000 in size, I expect to get 2000*2000 matrix for eqn.
can you please advise?
Thnks

Respuesta aceptada

Star Strider
Star Strider el 10 de Feb. de 2016
Use bsxfun:
A=[1 2 3];
B=[10 20 30];
equation = bsxfun(@plus, (A'+A'.^2), B)
equation =
12 22 32
16 26 36
22 32 42
  2 comentarios
Amin Gan
Amin Gan el 10 de Feb. de 2016
Thank you for your reply.
If I had a more complex equation such as:
eqn=A+sqrt(A^2-B), can I use bsxfun ?
thank you
Star Strider
Star Strider el 10 de Feb. de 2016
My pleasure.
Yes. You can ‘nest’ the bsxfun calls:
eqn = bsxfun(@plus, A', sqrt(bsxfun(@minus, A'.^2, B)));
or break them out into two or three lines to make them easier to read and (if necessary) troubleshoot:
eqn1 = bsxfun(@minus, A'.^2, B);
eqn2 = sqrt(eqn1);
eqn = bsxfun(@plus, A', eqn2)
Both produce:
eqn =
1 + 3i 1 + 4.3589i 1 + 5.3852i
2 + 2.4495i 2 + 4i 2 + 5.099i
3 + 1i 3 + 3.3166i 3 + 4.5826i
The results are complex, because you’re taking the square root of negative numbers.

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by