![]() |
void | dvm3_Matrix::dyad_product (dvm3_Matrix &result, dvm3_Vector const &v1, dvm3_Vector const &v2) |
void | dvm3_Matrix::dyad_product (dvm3_Matrix &result, double const v1[], double const v2[]) |
Functions | |
void | dvm3_Matrix::dyad_product (dvm3_Vector const &v1, dvm3_Vector const &v2) |
void | dvm3_Matrix::dyad_product (double const v1[], double const v2[]) |
void dvm3_Matrix::dyad_product | ( | double const | v1[], | |
double const | v2[] | |||
) | [inline, inherited] |
Form dyadic product (outer product) of vectors v1 and v2.
For each i, j: m[i][j] = v1[i] * v2[j]
v1 | 1st vector | |
v2 | 2nd vector |
Definition at line 1064 of file dvm3_matrix.h.
void dvm3_Matrix::dyad_product | ( | dvm3_Vector const & | v1, | |
dvm3_Vector const & | v2 | |||
) | [inherited] |
Form dyadic product (outer product) of vectors v1 and v2.
For each i, j: m[i][j] = v1[i] * v2[j]
v1 | 1st vector | |
v2 | 2nd vector |
void dyad_product | ( | dvm3_Matrix & | result, | |
double const | v1[], | |||
double const | v2[] | |||
) | [friend, inherited] |
Form dyadic product (outer product) of vectors v1 and v2.
For each i, j: result[i][j] = v1[i] * v2[j]
result | dyadic product | |
v1 | 1st vector | |
v2 | 2nd vector |
Definition at line 1099 of file dvm3_matrix.h.
void dyad_product | ( | dvm3_Matrix & | result, | |
dvm3_Vector const & | v1, | |||
dvm3_Vector const & | v2 | |||
) | [friend, inherited] |
Form dyadic product (outer product) of vectors v1 and v2.
For each i, j: result[i][j] = v1[i] * v2[j]
result | dyadic product | |
v1 | 1st vector | |
v2 | 2nd vector |
Definition at line 1093 of file dvm3_matrix.h.