预订演示

请注意 : 本帮助页面不适用于最新版本的Enterprise Architect. 最新的帮助文档在这里.

前页 后页

mmmpy

Matrix-Matrix multiply

SYNOPSIS

int r, c;
double A[r*c], B[c*r], Y[r*r];
mmmpy( r, c, A, B, Y );

DESCRIPTION

Multiply an r (rows) by c (columns) matrix A on the left by a c (rows) by r (columns) matrix B on the right to produce an r by r matrix Y.