Skip to main content
1-Visitor
February 24, 2017
Solved

element-wise vector addition

  • February 24, 2017
  • 3 replies
  • 2145 views

Hi, is it possible in Mathcad 15 or Prime to do a vector element by element addition that takes as input 2 vectors for example,vector x = [ A,B,C ] and y = [ a,b ] and has as output z = A+a, A+b, B+a, B+b,C+a & C+b ?

Thank you!

juan

Best answer by Werner_E

Which data structure do you imagine for z? A 3 x 2 matrix?

3 replies

23-Emerald I
February 24, 2017

search help for "vectorize", it puts an arrow over the operation and does it element by element.

It does, however, require elements with the same number of elements.  What you are asking would require programming.

Werner_E25-Diamond IAnswer
25-Diamond I
February 24, 2017

Which data structure do you imagine for z? A 3 x 2 matrix?

jsuarez1-VisitorAuthor
1-Visitor
February 24, 2017

Hi WE, thank you very much for your excellent answer. Since you are asking me I  prefer if the 3X2 matrix would be 3  1x2 matrix, that is

[A+a, A+b]

[B+a, B+b]

[C+a, C+b]

Thank you expert!

Juan