


brede_mat_product - Multiply two matrices from 'Mat' structures
function C = brede_mat_product(A, B)
Input: A 'Mat' structure
B 'Mat' structure
Output: C 'Mat' structure
This function will multiply two matrices (C = A*B)
C.matrix = A.matrix * B.matrix;
C.row = A.row;
C.column = B.column;
Ordinary matrices can also be used as input.
See also BREDE, BREDE_MAT, BREDE_MAT_ADD,
BREDE_MAT_MAT2MAT, BREDE_MAT_TRANSPOSE.
$Id: brede_mat_product.m,v 1.7 2005/05/31 18:15:34 fnielsen Exp $