Java Utililty Methods Char Array to Double Array

List of utility methods to do Char Array to Double Array

Description

The list of methods to do Char Array to Double Array are organized into topic(s).

Method

double[]copyChar2Double(char[] orig)
copy Char Double
if (orig != null)
    return subarrayChar2Double(orig, 0, orig.length);
else
    return null;