Package stallone.api.mc

Examples of stallone.api.mc.IDynamicalExpectationsSpectral.calculateCorrelation()


     * @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

TOP
Copyright © 2018 www.massapi.com. 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.