Java Char Array to Double Array copyChar2Double(char[] orig)

Here you can find the source of copyChar2Double(char[] orig)

Description

copy Char Double

License

Open Source License

Declaration

public static double[] copyChar2Double(char[] orig) 

Method Source Code

//package com.java2s;
/**/*from w  ww.jav a 2  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[] copyChar2Double(char[] orig) {
        if (orig != null)
            return subarrayChar2Double(orig, 0, orig.length);
        else
            return null;
    }

    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;
    }
}