Multiplication of Matrix and vector
Multiplication of Matrix and vector
(OP)
Hello all,
I am new to mathcad, I have a matrix (ixj) and a vector (ix1). I need to multiply each ith row of the matrix and the vector. Eg. My first row is (2,6,1) and second row is (1,2,3) and vector is 2,1,3. My resultant matrix first row should be 4,6,3 and second row should be (2,2,9)...and so on.
Thanks a lot
I am new to mathcad, I have a matrix (ixj) and a vector (ix1). I need to multiply each ith row of the matrix and the vector. Eg. My first row is (2,6,1) and second row is (1,2,3) and vector is 2,1,3. My resultant matrix first row should be 4,6,3 and second row should be (2,2,9)...and so on.
Thanks a lot





RE: Multiplication of Matrix and vector
TTFN
FAQ731-376: Eng-Tips.com Forum Policies
RE: Multiplication of Matrix and vector
Matrix*vector is only 1 - element vector (not a matrix)
RE: Multiplication of Matrix and vector
Ri,j = Mi,j*Vi
TTFN
FAQ731-376: Eng-Tips.com Forum Policies
RE: Multiplication of Matrix and vector