Package org.movsim.autogen

Examples of org.movsim.autogen.NoiseParameter


        initNoise();
        initTables();
    }

    private void initNoise() {
        NoiseParameter noiseParameter = new NoiseParameter();
        noiseParameter.setFluctStrength(1); // standard wiener process
        noiseParameter.setTau(param.getTauCorrelation());
        wienerProcess = new Noise(noiseParameter);
    }
View Full Code Here

TOP

Related Classes of org.movsim.autogen.NoiseParameter

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.