Package JSci.maths.vectors

Examples of JSci.maths.vectors.AbstractDoubleVector


        if (szArr != this.getDataSize())
            throw new IllegalArgumentException("FourierSineTransform#transform() - array size #= " + this.getDataSize());
       
       
        // Perform the transform
        AbstractDoubleVector    vecTrans = this.matKer.multiply(new DoubleVector(arrFunc));
        double[]                arrTrans = new double[szArr];
       
       
        // Unpack the results and return them
        for (int index=0; index<szArr; index++) {
            arrTrans[index] = vecTrans.getComponent(index);
        }
       
        return arrTrans;
    }
View Full Code Here

TOP

Related Classes of JSci.maths.vectors.AbstractDoubleVector

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.