-
Notifications
You must be signed in to change notification settings - Fork 8
Coding Questions ("Why did you implement it like THIS?")
miggland edited this page Jan 12, 2012
·
3 revisions
- Why do we have private and dependent properties in the distribution class? I didn't get it so far... ~T
pF is private because it is does not need to be seen by the user, but it used by the code. F is dependent, because it is calculated from the defined function (or just returned, if it is defined as a vector). ~M