All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apfloat.internal.FloatScramble Maven / Gradle / Ivy

There is a newer version: 1.14.0
Show newest version
package org.apfloat.internal;

/**
 * Functions to perform bit-reverse ordering of float data.
 *
 * @version 1.0
 * @author Mikko Tommila
 */

public class FloatScramble
{
    private FloatScramble()
    {
    }

    /**
     * Permute the data in the table to bit-reversed order.

* * The permutation table argument should contain pairs of indexes * that indicate array elements whose contents are swapped. * * @param data The array to permute. * @param offset The offset within the array to permute. * @param permutationTable Table of indexes indicating, which elements in the data are to be swapped. */ public static void scramble(float[] data, int offset, int[] permutationTable) { for (int k = 0; k < permutationTable.length; k += 2) { int i = offset + permutationTable[k], j = offset + permutationTable[k + 1]; float tmp = data[i]; data[i] = data[j]; data[j] = tmp; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy