BEASTObject that performs calculations based on the State.
A node that can be part of the state.
A parameter represents a value in the state space that can be changed by operators.
A real-valued parameter represents a value (or array of values if the dimension is larger than one) in the state space that can be changed by operators.
Initializes a RealParameter with values read from a CSV/TSV file in row-major order.
Logable: yes, this can be used in a log.
fileName, sep, startRow, rowCount, startCol, colCount, lower, upper, value, dimension, minordimension, keys, estimate
 
| type: java.lang.String |
| Name of CSV/TSV file to extract values from. |
| Required input |
 
| type: java.lang.String |
| Separator for CSV/TSV file. Default is TAB. |
| Optional input. Default: |
 
| type: java.lang.Integer |
| First row to include in the parameter. (Default 0.) |
| Optional input. Default: 0 |
 
| type: java.lang.Integer |
| Maximum number of rows to include. (Default all.) |
| Optional input. Default: 2147483647 |
 
| type: java.lang.Integer |
| First column to include in the parameter. (Default 0.) |
| Optional input. Default: 0 |
 
| type: java.lang.Integer |
| Maximum number of columns to include. (Default all.) |
| Optional input. Default: 2147483647 |
 
| type: java.lang.Double |
| lower value for this parameter (default -infinity) |
| Optional input |
 
| type: java.lang.Double |
| upper value for this parameter (default +infinity) |
| Optional input |
 
| type: java.lang.Double*** |
| start value(s) for this parameter. If multiple values are specified, they should be separated by whitespace. |
| Optional input |
 
| type: java.lang.Integer |
| dimension of the parameter (default 1, i.e scalar) |
| Optional input. Default: 1 |
 
| type: java.lang.Integer |
| minor-dimension when the parameter is interpreted as a matrix (default 1) |
| Optional input. Default: 1 |
 
| type: java.lang.String |
| the keys (unique dimension names) for the dimensions of this parameter |
| Optional input |
 
| type: java.lang.Boolean |
| whether to estimate this item or keep constant to its initial value |
| Optional input. Default: true |