SSJ API Documentation
Stochastic Simulation in Java
Loading...
Searching...
No Matches
MatrixOfObservationListener.java
1/*
2 * Class: MatrixOfObservationListener
3 * Description: Observation listener
4 * Environment: Java
5 * Software: SSJ
6 * Copyright (C) 2001 Pierre L'Ecuyer and Universite de Montreal
7 * Organization: DIRO, Universite de Montreal
8 * @author Éric Buist
9 * @since 2006
10
11 * SSJ is free software: you can redistribute it and/or modify it under
12 * the terms of the GNU General Public License (GPL) as published by the
13 * Free Software Foundation, either version 3 of the License, or
14 * any later version.
15
16 * SSJ is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20
21 * A copy of the GNU General Public License is available at
22 <a href="http://www.gnu.org/licenses">GPL licence site</a>.
23 */
24package umontreal.ssj.stat.matrix;
25
26import umontreal.ssj.stat.StatProbe;
27import cern.colt.matrix.DoubleMatrix2D;
28
36
45 public void newMatrixOfObservations(MatrixOfStatProbes<?> matrixOfProbes, DoubleMatrix2D x);
46
47}
Represents a matrix of statistical probes that can be managed simultaneously.
Represents an object that can listen to observations broadcast by matrices of statistical probes.
void newMatrixOfObservations(MatrixOfStatProbes<?> matrixOfProbes, DoubleMatrix2D x)
Receives the new matrix of observations x broadcast by the matrix of statistical probes matrixOfProbe...