interpolate a given array to be in new lenght

188 Views Asked by At

in order to interpolate 2 values, I can use

lerp(int a, int b) {
   return (a + b) / 2;
}

Now imagine I've an array(1, 30, 100, 300) and I want to interpolate it to array in size N (N=10 for example).

If N == 7, then:

1,15,30,65,100,200,300

I've no idea how to interpolate 4 values to be 10. I need a method that looks like:

interpolate(fina int[] input, final int newSize) {
    int[] res = new int[newSize];
    ...
    return res;
}

that works even on my example above with newSize of 7, 10 or whatever.

Any idea how to implement it?

1

There are 1 best solutions below

0
On

SOLVED.

public static double[] interpolate(double[] x, int newLength) {
    double[] y = null;
    if (newLength > 0) {
        int N = x.length;
        if (N == 1) {
            y = new double[1];
            y[0] = x[0];
            return y;
        } else if (newLength == 1) {
            y = new double[1];
            int ind = (int) Math.floor(N * 0.5 + 0.5);
            ind = Math.max(1, ind);
            ind = Math.min(ind, N);
            y[0] = x[ind - 1];
            return y;
        } else {
            y = new double[newLength];
            double Beta = ((double) newLength) / N;
            double newBeta = 1.0;

            if (newLength > 2)
                newBeta = (N - 2.0) / (newLength - 2.0);

            y[0] = x[0];
            y[1] = x[1];
            y[newLength - 1] = x[N - 1];

            double tmp, alpha;
            int i, j;
            for (i = 2; i <= newLength - 2; i++) {
                tmp = 1.0 + (i - 1) * newBeta;
                j = (int) Math.floor(tmp);
                alpha = tmp - j;
                y[i] = (1.0 - alpha) * x[Math.max(0, j)] + alpha * x[Math.min(N - 1, j + 1)];
            }
        }
    }

    return y;
}

/**
 * Find the maximum of all elements in the array, ignoring elements that are NaN.
 * @param data
 * @return
 */
public static double max(double[] data) {
    double max = Double.NaN;
    for (int i = 0; i < data.length; i++) {
        if (Double.isNaN(data[i]))
            continue;
        if (Double.isNaN(max) || data[i] > max)
            max = data[i];
    }
    return max;
}

public static int max(int[] data) {
    int max = data[0];
    for (int i = 1; i < data.length; i++) {
        if (data[i] > max)
            max = data[i];
    }
    return max;
}