![]() |
mrdividePURPOSE
SYNOPSIS
function gm=mrdivide(gm1,ct)
DESCRIPTION
CROSS-REFERENCE INFORMATION
This function calls:
SOURCE CODE
0001 function gm=mrdivide(gm1,ct) 0002 if isa(gm1,'GMixture') && isa(ct,'double') 0003 gm=gm1*(1/ct); 0004 else 0005 error('Wrong parameter type in GMixture mrdivide'); 0006 end |