Changeset 1093

Show
Ignore:
Timestamp:
06/13/10 21:53:42 (14 years ago)
Author:
smidl
Message:

doc

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • applications/bdmtoolbox/mex/mex_classes/mexMerger.m

    r1087 r1093  
    33% ====================================================================== 
    44%> @brief Abstract class of Bayesian Model (estimator), bdm::BM 
    5 % 
     5%>  
     6%> The purpose of this class is to combine information from the source pdfs: 
     7%>  sources = {f1,f2,f3} 
     8%> into a single pdf called the merger. 
     9%>  
     10%> Since this is an abstract class, the class does not define what is the type of the merger. 
     11%> Offsprings of this class can generate an arbitrary pdf, which is returned by function merger. 
     12%> The only requirement of the result is that it must be a valid pdf, i.e. it must pass through generic epdf_* functions. 
     13%> 
    614%> This class provides a bridge between bdm::MergerBase and Matlab 
    715% ======================================================================