Package com.heatonresearch.aifh.general.fns.link

Examples of com.heatonresearch.aifh.general.fns.link.LogLinkFunction


    public void testBasic() {
        final MultipleLinearRegression reg = new MultipleLinearRegression(1);

        assertEquals(2, reg.getLongTermMemory().length);

        final LogLinkFunction lnk = new LogLinkFunction();
        reg.setLinkFunction(lnk);
        assertTrue(reg.getLinkFunction() == lnk);

        reg.getLongTermMemory()[0] = 1;
        reg.getLongTermMemory()[1] = 2;
View Full Code Here

TOP

Related Classes of com.heatonresearch.aifh.general.fns.link.LogLinkFunction

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.