dvm3_Vector& dvm3_Vector::operator*= | ( | double | rhs | ) | [inherited] |
Multiply each component by rhs.
rhs | value |
dvm3_Vector& dvm3_Vector::operator*= | ( | dvm3_Vector const & | rhs | ) | [inherited] |
Component-wise *= operator.
rhs | value to be multiplied |
dvm3_Matrix& dvm3_Matrix::operator*= | ( | double | rhs | ) | [inherited] |
Component-wise *= operator.
rhs | value by which each component of this matrix is to be multiplied |
dvm3_Matrix& dvm3_Matrix::operator*= | ( | dvm3_Matrix const & | rhs | ) | [inherited] |
Component-wise *= operator.
rhs | value by which each component of this matrix is to be multiplied |
dvm3_Vector& dvm3_Vector::operator+= | ( | double | rhs | ) | [inherited] |
Add rhs to each component.
rhs | value to be added |
dvm3_Vector& dvm3_Vector::operator+= | ( | dvm3_Vector const & | rhs | ) | [inherited] |
Component-wise += operator.
rhs | value to be added |
dvm3_Matrix& dvm3_Matrix::operator+= | ( | double | rhs | ) | [inherited] |
Component-wise /= operator.
rhs | value to be added to each component of this matrix |
dvm3_Matrix& dvm3_Matrix::operator+= | ( | dvm3_Matrix const & | rhs | ) | [inherited] |
Component-wise += operator.
rhs | value to be added to each component of this matrix |
dvm3_Vector& dvm3_Vector::operator-= | ( | double | rhs | ) | [inherited] |
Subtract rhs from each component.
rhs | value to be added |
dvm3_Vector& dvm3_Vector::operator-= | ( | dvm3_Vector const & | rhs | ) | [inherited] |
Component-wise -= operator.
rhs | value to be subtracted |
dvm3_Matrix& dvm3_Matrix::operator-= | ( | double | rhs | ) | [inherited] |
Component-wise /= operator.
rhs | value to be subtracted from each component of this matrix |
dvm3_Matrix& dvm3_Matrix::operator-= | ( | dvm3_Matrix const & | rhs | ) | [inherited] |
Component-wise -= operator.
rhs | value to be subtracted from each component of this matrix |
dvm3_Vector& dvm3_Vector::operator/= | ( | double | rhs | ) | [inherited] |
Divide each component by rhs.
rhs | value |
dvm3_Vector& dvm3_Vector::operator/= | ( | dvm3_Vector const & | rhs | ) | [inherited] |
Component-wise /= operator.
rhs | value to be divided by |
dvm3_Matrix& dvm3_Matrix::operator/= | ( | double | rhs | ) | [inherited] |
Component-wise /= operator.
rhs | value by which each component of this matrix is to be divided |
dvm3_Matrix& dvm3_Matrix::operator/= | ( | dvm3_Matrix const & | rhs | ) | [inherited] |
Component-wise /= operator.
rhs | value by which each component of this matrix is to be divided |
dvm3_Vector & dvm3_Vector::operator= | ( | double | rhs | ) | [inline, inherited] |
Assignment operator
rhs | value to be assigned |
Definition at line 710 of file dvm3_vector.h.
dvm3_Vector & dvm3_Vector::operator= | ( | dvm3_Vector const & | rhs | ) | [inline, inherited] |
Copy-assignment operator
rhs | vector value for assignment |
Definition at line 706 of file dvm3_vector.h.
References dvm3_Vector::data_.
dvm3_Matrix & dvm3_Matrix::operator= | ( | double | rhs | ) | [inline, inherited] |
Assign the value of rhs to each component of this matrix
rhs | double value to be assigned to each component of this matrix |
Definition at line 967 of file dvm3_matrix.h.
dvm3_Matrix & dvm3_Matrix::operator= | ( | dvm3_Matrix const & | rhs | ) | [inline, inherited] |
Copy-assignment operator
rhs | matrix value for assignment |
Definition at line 960 of file dvm3_matrix.h.
References dvm3_Matrix::data_.
dvm3_Matrix operator* | ( | dvm3_Matrix const & | m, | |
double | d | |||
) | [friend, inherited] |
Set each component to m[i][j] * d.
m | a matrix | |
d | a double |
dvm3_Matrix operator* | ( | double | d, | |
dvm3_Matrix const & | m | |||
) | [friend, inherited] |
Set each component to d * m[i][j].
d | a double | |
m | a matrix |
dvm3_Matrix operator* | ( | dvm3_Matrix const & | m1, | |
dvm3_Matrix const & | m2 | |||
) | [friend, inherited] |
Component-wise product of m1 and m2.
m1 | 1st matrix | |
m2 | 2nd matrix |
dvm3_Matrix operator+ | ( | dvm3_Matrix const & | m, | |
double | d | |||
) | [friend, inherited] |
Set each component to m[i][j] + d.
m | a matrix | |
d | a double |
dvm3_Matrix operator+ | ( | double | d, | |
dvm3_Matrix const & | m | |||
) | [friend, inherited] |
Set each component to d + m[i][j].
d | a double | |
m | a matrix |
dvm3_Matrix operator+ | ( | dvm3_Matrix const & | m1, | |
dvm3_Matrix const & | m2 | |||
) | [friend, inherited] |
Component-wise sum of m1 and m2.
m1 | 1st matrix | |
m2 | 2nd matrix |
dvm3_Matrix operator- | ( | dvm3_Matrix const & | m, | |
double | d | |||
) | [friend, inherited] |
Set each component to m[i][j] - d.
m | a matrix | |
d | a double |
dvm3_Matrix operator- | ( | double | d, | |
dvm3_Matrix const & | m | |||
) | [friend, inherited] |
Set each component to d - m[i][j].
d | a double | |
m | a matrix |
dvm3_Matrix operator- | ( | dvm3_Matrix const & | m1, | |
dvm3_Matrix const & | m2 | |||
) | [friend, inherited] |
Component-wise difference of m1 and m2.
m1 | 1st matrix | |
m2 | 2nd matrix |
dvm3_Matrix operator/ | ( | dvm3_Matrix const & | m, | |
double | d | |||
) | [friend, inherited] |
Set each component to m[i][j] / d.
m | a matrix | |
d | a double |
dvm3_Matrix operator/ | ( | double | d, | |
dvm3_Matrix const & | m | |||
) | [friend, inherited] |
Set each component to d / m[i][j].
d | a double | |
m | a matrix |
dvm3_Matrix operator/ | ( | dvm3_Matrix const & | m1, | |
dvm3_Matrix const & | m2 | |||
) | [friend, inherited] |
Component-wise division of m1 and m2.
m1 | 1st matrix | |
m2 | 2nd matrix |