To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Revision:

root / _FullBNT / BNT / CPDs / @generic_CPD / generic_CPD.m @ 8:b5b38998ef3b

History | View | Annotate | Download (206 Bytes)

1
function CPD = generic_CPD(clamped)
2
% GENERIC_CPD Virtual constructor for generic CPD
3
% CPD = discrete_CPD(clamped)
4

    
5
if nargin < 1, clamped = 0; end
6

    
7
CPD.clamped = clamped;
8
CPD = class(CPD, 'generic_CPD');