<< CL_cross Math CL_dot >>

CelestLab >> Math > 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)

Report an issue
<< CL_cross Math CL_dot >>