Java interpolate interpolatedSample(double xStart, double xVal, double xEnd, double yStart, double yEnd)

Here you can find the source of interpolatedSample(double xStart, double xVal, double xEnd, double yStart, double yEnd)

Description

interpolated Sample

License

Open Source License

Declaration

public static double interpolatedSample(double xStart, double xVal, double xEnd, double yStart, double yEnd) 

Method Source Code

//package com.java2s;
/**/*  w  w  w  . j av a2 s  .  c  o  m*/
 * Copyright 2004-2006 DFKI GmbH.
 * All Rights Reserved.  Use is subject to license terms.
 *
 * This file is part of MARY TTS.
 *
 * MARY TTS is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, version 3 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

public class Main {
    public static double interpolatedSample(double xStart, double xVal, double xEnd, double yStart, double yEnd) {
        return (xVal - xStart) * (yEnd - yStart) / (xEnd - xStart) + yStart;
    }
}

Related

  1. interpolateColor(int rgba1, int rgba2, float percent)
  2. interpolateColors(int a, int b, float lerp)
  3. interpolateColors(int c0, int c1, float w)
  4. interpolateCubic(int x0, int x1, int x2, int x3, double t)
  5. interpolatedNoise(int x, int z, int reciprocal)
  6. interpolatefinal(double a, final double b, final double d)
  7. interpolateFloat(float f0, float f1, double mixer)
  8. interpolateFloat(float t, float a, float b)
  9. interpolateLinear(final float a, final float b, final float t)