Package stallone.api.mc

Examples of stallone.api.mc.IDynamicalExpectationsSpectral


     * @param observable
     * @return
     */
    public IDoubleArray fingerprintCorrelation(IDoubleArray M, IDoubleArray observable1, IDoubleArray observable2)
    {
        IDynamicalExpectationsSpectral dexp = MarkovModel.create.createDynamicalFingerprint(M);
        dexp.calculateCorrelation(observable1, observable2);
        IDoubleArray res = Doubles.util.mergeColumns(dexp.getTimescales(), dexp.getAmplitudes());
        return(res);
    }
View Full Code Here


     * @param observable
     * @return
     */
    public IDoubleArray fingerprintPerturbation(IDoubleArray M, IDoubleArray p0, IDoubleArray observable)
    {
        IDynamicalExpectationsSpectral dexp = MarkovModel.create.createDynamicalFingerprint(M);
        dexp.calculatePerturbationExpectation(p0, observable);
        IDoubleArray res = Doubles.util.mergeColumns(dexp.getTimescales(), dexp.getAmplitudes());
        return(res);
    }
View Full Code Here

TOP

Related Classes of stallone.api.mc.IDynamicalExpectationsSpectral

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.