当前位置: 首页>>代码示例>>Java>>正文


Java CommonUtils.cftfsub方法代码示例

本文整理汇总了Java中org.jtransforms.utils.CommonUtils.cftfsub方法的典型用法代码示例。如果您正苦于以下问题:Java CommonUtils.cftfsub方法的具体用法?Java CommonUtils.cftfsub怎么用?Java CommonUtils.cftfsub使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.jtransforms.utils.CommonUtils的用法示例。


在下文中一共展示了CommonUtils.cftfsub方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: complexInverse

import org.jtransforms.utils.CommonUtils; //导入方法依赖的package包/类
/**
 * Computes 1D inverse DFT of complex data leaving the result in
 * <code>a</code>. Complex number is stored as two double values in
 * sequence: the real and imaginary part, i.e. the size of the input array
 * must be greater or equal 2*n. The physical layout of the input data has
 * to be as follows:<br>
 *  
 * <pre>
 * a[offa+2*k] = Re[k], 
 * a[offa+2*k+1] = Im[k], 0&lt;=k&lt;n
 * </pre>
 *  
 * @param a     data to transform
 * @param offa  index of the first element in array <code>a</code>
 * @param scale if true then scaling is performed
 */
public void complexInverse(double[] a, int offa, boolean scale)
{
    if (useLargeArrays) {
        complexInverse(new DoubleLargeArray(a), offa, scale);
    } else {
        if (n == 1) {
            return;
        }
        switch (plan) {
            case SPLIT_RADIX:
                CommonUtils.cftfsub(2 * n, a, offa, ip, nw, w);
                break;
            case MIXED_RADIX:
                cfftf(a, offa, +1);
                break;
            case BLUESTEIN:
                bluestein_complex(a, offa, 1);
                break;
        }
        if (scale) {
            CommonUtils.scale(n, 1.0 / (double) n, a, offa, true);
        }
    }
}
 
开发者ID:wendykierp,项目名称:JTransforms,代码行数:41,代码来源:DoubleFFT_1D.java

示例2: complexInverse

import org.jtransforms.utils.CommonUtils; //导入方法依赖的package包/类
/**
 * Computes 1D inverse DFT of complex data leaving the result in
 * <code>a</code>. Complex number is stored as two float values in
 * sequence: the real and imaginary part, i.e. the size of the input array
 * must be greater or equal 2*n. The physical layout of the input data has
 * to be as follows:<br>
 *  
 * <pre>
 * a[offa+2*k] = Re[k], 
 * a[offa+2*k+1] = Im[k], 0&lt;=k&lt;n
 * </pre>
 *  
 * @param a     data to transform
 * @param offa  index of the first element in array <code>a</code>
 * @param scale if true then scaling is performed
 */
public void complexInverse(float[] a, int offa, boolean scale)
{
    if (useLargeArrays) {
        complexInverse(new FloatLargeArray(a), offa, scale);
    } else {
        if (n == 1) {
            return;
        }
        switch (plan) {
            case SPLIT_RADIX:
                CommonUtils.cftfsub(2 * n, a, offa, ip, nw, w);
                break;
            case MIXED_RADIX:
                cfftf(a, offa, +1);
                break;
            case BLUESTEIN:
                bluestein_complex(a, offa, 1);
                break;
        }
        if (scale) {
            CommonUtils.scale(n, 1.0f / (float) n, a, offa, true);
        }
    }
}
 
开发者ID:wendykierp,项目名称:JTransforms,代码行数:41,代码来源:FloatFFT_1D.java

示例3: inverse

import org.jtransforms.utils.CommonUtils; //导入方法依赖的package包/类
/**
 * Computes 1D inverse DCT (DCT-III) leaving the result in <code>a</code>.
 *  
 * @param a
 *              data to transform
 * @param offa
 *              index of the first element in array <code>a</code>
 * @param scale
 *              if true then scaling is performed
 */
public void inverse(final float[] a, final int offa, boolean scale)
{
    if (n == 1)
        return;
    if (isPowerOfTwo) {
        float xr;
        if (scale) {
            CommonUtils.scale(n, (float) sqrt(2.0 / n), a, offa, false);
            a[offa] = a[offa] / (float) sqrt(2.0);
        }
        CommonUtils.dctsub(n, a, offa, nc, w, nw);
        if (n > 4) {
            CommonUtils.cftfsub(n, a, offa, ip, nw, w);
            rftfsub(n, a, offa, nc, w, nw);
        } else if (n == 4) {
            CommonUtils.cftfsub(n, a, offa, ip, nw, w);
        }
        xr = a[offa] - a[offa + 1];
        a[offa] += a[offa + 1];
        for (int j = 2; j < n; j += 2) {
            a[offa + j - 1] = a[offa + j] - a[offa + j + 1];
            a[offa + j] += a[offa + j + 1];
        }
        a[offa + n - 1] = xr;
    } else {
        throw new IllegalStateException();
    }
}
 
开发者ID:pmarks-net,项目名称:chromadoze,代码行数:39,代码来源:FloatDCT_1D.java

示例4: realForward

import org.jtransforms.utils.CommonUtils; //导入方法依赖的package包/类
/**
 * Computes 1D forward DFT of real data leaving the result in <code>a</code>
 * . The physical layout of the output data is as follows:<br>
 *  
 * if n is even then
 *  
 * <pre>
 * a[offa+2*k] = Re[k], 0&lt;=k&lt;n/2 
 * a[offa+2*k+1] = Im[k], 0&lt;k&lt;n/2
 * a[offa+1] = Re[n/2]
 * </pre>
 *  
 * if n is odd then
 *  
 * <pre>
 * a[offa+2*k] = Re[k], 0&lt;=k&lt;(n+1)/2 
 * a[offa+2*k+1] = Im[k], 0&lt;k&lt;(n-1)/2 
 * a[offa+1] = Im[(n-1)/2]
 * </pre>
 *  
 * This method computes only half of the elements of the real transform. The
 * other half satisfies the symmetry condition. If you want the full real
 * forward transform, use <code>realForwardFull</code>. To get back the
 * original data, use <code>realInverse</code> on the output of this method.
 *  
 * @param a    data to transform
 * @param offa index of the first element in array <code>a</code>
 */
public void realForward(double[] a, int offa)
{
    if (useLargeArrays) {
        realForward(new DoubleLargeArray(a), offa);
    } else {
        if (n == 1) {
            return;
        }

        switch (plan) {
            case SPLIT_RADIX:
                double xi;

                if (n > 4) {
                    CommonUtils.cftfsub(n, a, offa, ip, nw, w);
                    CommonUtils.rftfsub(n, a, offa, nc, w, nw);
                } else if (n == 4) {
                    CommonUtils.cftx020(a, offa);
                }
                xi = a[offa] - a[offa + 1];
                a[offa] += a[offa + 1];
                a[offa + 1] = xi;
                break;
            case MIXED_RADIX:
                rfftf(a, offa);
                for (int k = n - 1; k >= 2; k--) {
                    int idx = offa + k;
                    double tmp = a[idx];
                    a[idx] = a[idx - 1];
                    a[idx - 1] = tmp;
                }
                break;
            case BLUESTEIN:
                bluestein_real_forward(a, offa);
                break;
        }
    }
}
 
开发者ID:wendykierp,项目名称:JTransforms,代码行数:67,代码来源:DoubleFFT_1D.java

示例5: realForward

import org.jtransforms.utils.CommonUtils; //导入方法依赖的package包/类
/**
 * Computes 1D forward DFT of real data leaving the result in <code>a</code>
 * . The physical layout of the output data is as follows:<br>
 *  
 * if n is even then
 *  
 * <pre>
 * a[offa+2*k] = Re[k], 0&lt;=k&lt;n/2 
 * a[offa+2*k+1] = Im[k], 0&lt;k&lt;n/2
 * a[offa+1] = Re[n/2]
 * </pre>
 *  
 * if n is odd then
 *  
 * <pre>
 * a[offa+2*k] = Re[k], 0&lt;=k&lt;(n+1)/2 
 * a[offa+2*k+1] = Im[k], 0&lt;k&lt;(n-1)/2 
 * a[offa+1] = Im[(n-1)/2]
 * </pre>
 *  
 * This method computes only half of the elements of the real transform. The
 * other half satisfies the symmetry condition. If you want the full real
 * forward transform, use <code>realForwardFull</code>. To get back the
 * original data, use <code>realInverse</code> on the output of this method.
 *  
 * @param a    data to transform
 * @param offa index of the first element in array <code>a</code>
 */
public void realForward(float[] a, int offa)
{
    if (useLargeArrays) {
        realForward(new FloatLargeArray(a), offa);
    } else {
        if (n == 1) {
            return;
        }

        switch (plan) {
            case SPLIT_RADIX:
                float xi;

                if (n > 4) {
                    CommonUtils.cftfsub(n, a, offa, ip, nw, w);
                    CommonUtils.rftfsub(n, a, offa, nc, w, nw);
                } else if (n == 4) {
                    CommonUtils.cftx020(a, offa);
                }
                xi = a[offa] - a[offa + 1];
                a[offa] += a[offa + 1];
                a[offa + 1] = xi;
                break;
            case MIXED_RADIX:
                rfftf(a, offa);
                for (int k = n - 1; k >= 2; k--) {
                    int idx = offa + k;
                    float tmp = a[idx];
                    a[idx] = a[idx - 1];
                    a[idx - 1] = tmp;
                }
                break;
            case BLUESTEIN:
                bluestein_real_forward(a, offa);
                break;
        }
    }
}
 
开发者ID:wendykierp,项目名称:JTransforms,代码行数:67,代码来源:FloatFFT_1D.java


注:本文中的org.jtransforms.utils.CommonUtils.cftfsub方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。