Revision 943, 0.6 kB
(checked in by smidl, 15 years ago)
|
syntax of epredictor
|
Line | |
---|
1 | classdef mexBM |
---|
2 | properties |
---|
3 | % from wikipedia |
---|
4 | rv |
---|
5 | rvc |
---|
6 | rvy |
---|
7 | end |
---|
8 | methods |
---|
9 | function validate(p) |
---|
10 | % checks if all paramateres match |
---|
11 | end |
---|
12 | function dims=dimensions(p) |
---|
13 | %please fill |
---|
14 | %dims = [size_of_posterior size_of_data size_of_condition] |
---|
15 | dims = [0,0,0] % |
---|
16 | end |
---|
17 | function obj=bayes(obj,dt,cond) |
---|
18 | % transform old estimate into new estimate |
---|
19 | end |
---|
20 | function p=epredictor(obj,cond) |
---|
21 | % return posterior density |
---|
22 | end |
---|
23 | end |
---|
24 | end |
---|