scale_matrixT_scale_matrixScaleMatrixScaleMatrixscale_matrix (Operator)

Name

scale_matrixT_scale_matrixScaleMatrixScaleMatrixscale_matrix — Scale a matrix.

Signature

scale_matrix( : : MatrixID, Factor : MatrixScaledID)

Herror T_scale_matrix(const Htuple MatrixID, const Htuple Factor, Htuple* MatrixScaledID)

void ScaleMatrix(const HTuple& MatrixID, const HTuple& Factor, HTuple* MatrixScaledID)

HMatrix HMatrix::ScaleMatrix(const HTuple& Factor) const

HMatrix HMatrix::ScaleMatrix(double Factor) const

static void HOperatorSet.ScaleMatrix(HTuple matrixID, HTuple factor, out HTuple matrixScaledID)

HMatrix HMatrix.ScaleMatrix(HTuple factor)

HMatrix HMatrix.ScaleMatrix(double factor)

def scale_matrix(matrix_id: HHandle, factor: Union[int, float]) -> HHandle

Description

The operator scale_matrixscale_matrixScaleMatrixScaleMatrixscale_matrix scales the Matrix by a constant factor. The matrix is defined by the matrix handle MatrixIDMatrixIDMatrixIDmatrixIDmatrix_id. A new matrix MatrixScaled is generated with the result. The operator returns the matrix handle MatrixScaledIDMatrixScaledIDMatrixScaledIDmatrixScaledIDmatrix_scaled_id. Access to the elements of the matrix is possible e.g., with the operator get_full_matrixget_full_matrixGetFullMatrixGetFullMatrixget_full_matrix. The formula for the calculation of the result is:

Example:

FactorFactorFactorfactorfactor = 1.5

Execution Information

Parameters

MatrixIDMatrixIDMatrixIDmatrixIDmatrix_id (input_control)  matrix HMatrix, HTupleHHandleHTupleHtuple (handle) (IntPtr) (HHandle) (handle)

Matrix handle of the input matrix.

FactorFactorFactorfactorfactor (input_control)  number HTupleUnion[int, float]HTupleHtuple (real / integer) (double / int / long) (double / Hlong) (double / Hlong)

Scale factor.

Default: 2.0

Suggested values: 0.1, 0.2, 0.3, 0.5, 0.7, 1.0, 1.5, 2.0, 3.0, 5.0, 10.0

MatrixScaledIDMatrixScaledIDMatrixScaledIDmatrixScaledIDmatrix_scaled_id (output_control)  matrix HMatrix, HTupleHHandleHTupleHtuple (handle) (IntPtr) (HHandle) (handle)

Matrix handle with the scaled elements.

Result

If the parameters are valid, the operator scale_matrixscale_matrixScaleMatrixScaleMatrixscale_matrix returns the value 2 ( H_MSG_TRUE) . If necessary, an exception is raised.

Possible Predecessors

create_matrixcreate_matrixCreateMatrixCreateMatrixcreate_matrix

Possible Successors

get_full_matrixget_full_matrixGetFullMatrixGetFullMatrixget_full_matrix, get_value_matrixget_value_matrixGetValueMatrixGetValueMatrixget_value_matrix

Alternatives

scale_matrix_modscale_matrix_modScaleMatrixModScaleMatrixModscale_matrix_mod

See also

mult_element_matrixmult_element_matrixMultElementMatrixMultElementMatrixmult_element_matrix, mult_element_matrix_modmult_element_matrix_modMultElementMatrixModMultElementMatrixModmult_element_matrix_mod, div_element_matrixdiv_element_matrixDivElementMatrixDivElementMatrixdiv_element_matrix, div_element_matrix_moddiv_element_matrix_modDivElementMatrixModDivElementMatrixModdiv_element_matrix_mod

Module

Foundation