Show
Ignore:
Timestamp:
05/16/10 23:13:02 (14 years ago)
Author:
smidl
Message:

syntax of epredictor

Files:
1 modified

Legend:

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

    r937 r943  
    88    methods 
    99        function validate(p) 
    10             if size(p.mu)<1 & (size(p.b)<1) 
    11                 error('incompatible mu and b'); 
    12             end 
     10                    % checks if all paramateres match 
    1311        end 
    1412        function dims=dimensions(p) 
    1513            %please fill 
    16             [size_of_posterior size_of_data size_of_condition] 
     14            %dims = [size_of_posterior size_of_data size_of_condition] 
     15            dims = [0,0,0] % 
    1716        end 
    1817        function obj=bayes(obj,dt,cond) 
    1918            % transform old estimate into new estimate 
    2019        end 
    21         function p=posterior(obj) 
     20        function p=epredictor(obj,cond) 
    2221            % return posterior density 
    2322        end