Java Array Sub Array subarrayChar2Double(char[] orig, int off, int len)

Here you can find the source of subarrayChar2Double(char[] orig, int off, int len)

Description

subarray Char Double

License

Open Source License

Declaration

public static double[] subarrayChar2Double(char[] orig, int off, int len) 

Method Source Code

//package com.java2s;
/**/*from www .  j  av a  2s .  c  om*/
 * 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[] subarrayChar2Double(char[] orig, int off, int len) {
        if (off + len > orig.length)
            throw new IllegalArgumentException("requested subarray exceeds array length");
        double[] sub = new double[len];
        for (int i = 0; i < len; i++)
            sub[i] = orig[i + off];

        return sub;
    }
}

Related

  1. subarray(T[] a, int off, int len)
  2. subArray(T[] array, int start, int end)
  3. subArray(T[] array, int start, int end)
  4. subArray(T[] array, int startIndex, int endIndex)
  5. subArray(T[] origin, int start, int length)
  6. subarrayEnd(byte[] array, int offset)
  7. subarrayEquals(int[] array, int[] subarray, int startIndex)
  8. subarrayOf(final String[] array, final int start, final int end)
  9. subByteArray(byte[] array, int offset, int length)