add_matrixT_add_matrixAddMatrixAddMatrixadd_matrix (算子名称)

名称

add_matrixT_add_matrixAddMatrixAddMatrixadd_matrix — Add two matrices.

参数签名

add_matrix( : : MatrixAID, MatrixBID : MatrixSumID)

Herror T_add_matrix(const Htuple MatrixAID, const Htuple MatrixBID, Htuple* MatrixSumID)

void AddMatrix(const HTuple& MatrixAID, const HTuple& MatrixBID, HTuple* MatrixSumID)

HMatrix HMatrix::AddMatrix(const HMatrix& MatrixBID) const

static void HOperatorSet.AddMatrix(HTuple matrixAID, HTuple matrixBID, out HTuple matrixSumID)

HMatrix HMatrix.AddMatrix(HMatrix matrixBID)

def add_matrix(matrix_aid: HHandle, matrix_bid: HHandle) -> HHandle

描述

The operator add_matrixadd_matrixAddMatrixAddMatrixAddMatrixadd_matrix computes the sum of the input matrices MatrixA and MatrixB given by the matrix handles MatrixAIDMatrixAIDMatrixAIDMatrixAIDmatrixAIDmatrix_aid and MatrixBIDMatrixBIDMatrixBIDMatrixBIDmatrixBIDmatrix_bid. Both matrices must have identical dimensions. A new matrix MatrixSum is generated with the result. The operator returns the matrix handle MatrixSumIDMatrixSumIDMatrixSumIDMatrixSumIDmatrixSumIDmatrix_sum_id of the matrix MatrixSum. Access to the elements of the matrix is possible e.g., with the operator get_full_matrixget_full_matrixGetFullMatrixGetFullMatrixGetFullMatrixget_full_matrix. The formula for the calculation of the result is:

Example:

运行信息

参数表

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

Matrix handle of the input matrix A.

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

Matrix handle of the input matrix B.

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

Matrix handle with the sum of the input matrices.

结果

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

可能的前置算子

create_matrixcreate_matrixCreateMatrixCreateMatrixCreateMatrixcreate_matrix

可能的后置算子

get_full_matrixget_full_matrixGetFullMatrixGetFullMatrixGetFullMatrixget_full_matrix, get_value_matrixget_value_matrixGetValueMatrixGetValueMatrixGetValueMatrixget_value_matrix

可替代算子

add_matrix_modadd_matrix_modAddMatrixModAddMatrixModAddMatrixModadd_matrix_mod

参考其它

sub_matrixsub_matrixSubMatrixSubMatrixSubMatrixsub_matrix, sub_matrix_modsub_matrix_modSubMatrixModSubMatrixModSubMatrixModsub_matrix_mod

模块

Foundation