Package | Description |
---|---|
broadwick.math |
Provides various math functions.
|
broadwick.statistics.distributions |
This package contains classes for defining distributions, including user defined ones.
|
Modifier and Type | Method and Description |
---|---|
Vector |
Vector.add(Vector v)
Add a vector to this one.
|
Vector |
Matrix.multiply(Vector v)
Returns the result of multiplying this by the vector v.
|
Vector |
Matrix.preMultiply(Vector v)
Returns the (row) vector result of premultiplying this by the vector v.
|
Vector |
Vector.subtract(Vector v)
Subtract a vector from this one.
|
Modifier and Type | Method and Description |
---|---|
Vector |
Vector.add(Vector v)
Add a vector to this one.
|
double |
Vector.multiply(Vector v)
Calculate the dot product of this vector with v.
|
Vector |
Matrix.multiply(Vector v)
Returns the result of multiplying this by the vector v.
|
Vector |
Matrix.preMultiply(Vector v)
Returns the (row) vector result of premultiplying this by the vector v.
|
Vector |
Vector.subtract(Vector v)
Subtract a vector from this one.
|
Constructor and Description |
---|
Vector(Vector v)
Copy constructor.
|
Modifier and Type | Field and Description |
---|---|
private Vector |
TruncatedMultivariateNormalDistribution.lowerBounds |
private Vector |
TruncatedMultivariateNormalDistribution.means |
private Vector |
TruncatedMultivariateNormalDistribution.upperBounds |
Modifier and Type | Method and Description |
---|---|
Vector |
TruncatedMultivariateNormalDistribution.sample() |
Vector |
MultivariateNormalDistribution.sample() |
Vector |
ContinuousMultivariateDistribution.sample()
Obtain a sample from the distribution.
|
Constructor and Description |
---|
TruncatedMultivariateNormalDistribution(Vector means,
Matrix covariances,
Vector lb,
Vector ub)
Create an instance of a multivariate distribution that is bounded.
|
Copyright © 2015 University of Glasgow. All rights reserved.