<< CL_cross Utilities CL_defParam >>

CelestLab >> Utilities > CL_dMult

CL_dMult

Dot multiplication

Calling Sequence

[C] = CL_dMult(A, B)

Description

Parameters

A:

First matrix (PxN) or (1xN) or (Px1)

B:

Second matrix (PxN) or (1xN) or (Px1)

C:

result (PxN)

Authors

See also

Examples

coef = [ 1 2 3 ];
v = [ 1 2 3 ; 4 5 6 ; 7 8 9 ];
w = CL_dMult(coef,v)
<< CL_cross Utilities CL_defParam >>