Examples of RollBufferShort


Examples of davaguine.jmac.tools.RollBufferShort

        m_rbDeltaM.Create(512 /*NN_WINDOW_ELEMENTS */, nOrder);
        m_paryM = new short[nOrder];
    }

    public int Compress(int nInput) {
        RollBufferShort input = m_rbInput;
        RollBufferShort delta = m_rbDeltaM;
        int order = m_nOrder;
        int shift = m_nShift;
        short[] pary = m_paryM;
        short[] inputData = input.m_pData;
        int inputIndex = input.index;
View Full Code Here

Examples of davaguine.jmac.tools.RollBufferShort

        return nOutput;
    }

    public int Decompress(int nInput) {
        // figure a dot product
        RollBufferShort input = m_rbInput;
        RollBufferShort delta = m_rbDeltaM;
        int order = m_nOrder;
        int shift = m_nShift;
        short[] pary = m_paryM;
        short[] inputData = input.m_pData;
        int inputIndex = input.index;
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.