How do I multiply vector elements in the following fashion???
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Maruti Patil
el 2 de Abr. de 2016
Comentada: Maruti Patil
el 2 de Abr. de 2016
Suppose I have A=[18 44 20 55] & B=[4 6]
Now I want C=[18*4 44*4 20*6 55*6]
i.e I want to multiply first element of B with first pair of elements in A
and second element of B with second pair of A and so on...
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 2 de Abr. de 2016
Editada: Azzi Abdelmalek
el 2 de Abr. de 2016
A=[18 44 20 55]
B=[4 6]
out=reshape(bsxfun(@times,A',B),1,[])
3 comentarios
Azzi Abdelmalek
el 2 de Abr. de 2016
Then you have to reshape A
reshape(bsxfun(@times,reshape(A,2,2),B),1,[])
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!