mtk_copy: Copies' Objects

Copies' one MTKObject to another.

Usage: mtk_copy($<$dest_mtk_object$>$, $<$src_mtk_object$>$)

where $<$dest_mtk_object$>$ is the destination object, which will hold the new copy; and $<$src_mtk_object$>$ is the source object, the one which will be copied.

Example: Copying the HMM object Predictor.

Declaration=
Const
   ...

Var
    MTKObject : Predictor_Copy;
    ...
Events=
event = event( TIME )
condition = ( TRUE )
action = 
{    
    ...
    mtk_copy( Predictor_Copy, Predictor );
    ...
};



Guilherme Dutra Gonzaga Jaime 2010-10-27