C# 클래스 Encog.Util.CSV.NumberList

파일 보기 프로젝트 열기: encog/encog-silverlight-core

공개 메소드들

메소드 설명
FromList ( CSVFormat format, String str ) : double[]

Get an array of double's from a string of comma separated text.

FromListInt ( CSVFormat format, String str ) : int[]

Get an array of ints's from a string of comma separated text.

ToList ( CSVFormat format, StringBuilder result, double data ) : void

Convert an array of doubles to a comma separated list.

ToList ( CSVFormat format, int precision, StringBuilder result, double data ) : void

Convert an array of doubles to a comma separated list.

ToListInt ( CSVFormat format, StringBuilder result, int data ) : void

Convert an array of ints to a comma separated list.

비공개 메소드들

메소드 설명
NumberList ( ) : System

메소드 상세

FromList() 공개 정적인 메소드

Get an array of double's from a string of comma separated text.
public static FromList ( CSVFormat format, String str ) : double[]
format CSVFormat The way to format this list.
str String The string that contains a list of numbers.
리턴 double[]

FromListInt() 공개 정적인 메소드

Get an array of ints's from a string of comma separated text.
public static FromListInt ( CSVFormat format, String str ) : int[]
format CSVFormat The way to format this list.
str String The string that contains a list of numbers.
리턴 int[]

ToList() 공개 정적인 메소드

Convert an array of doubles to a comma separated list.
public static ToList ( CSVFormat format, StringBuilder result, double data ) : void
format CSVFormat The way to format this list.
result StringBuilder This string will have the values appended to it.
data double The array of doubles to use.
리턴 void

ToList() 공개 정적인 메소드

Convert an array of doubles to a comma separated list.
public static ToList ( CSVFormat format, int precision, StringBuilder result, double data ) : void
format CSVFormat The way to format this list.
precision int The precision.
result StringBuilder This string will have the values appended to it.
data double The array of doubles to use.
리턴 void

ToListInt() 공개 정적인 메소드

Convert an array of ints to a comma separated list.
public static ToListInt ( CSVFormat format, StringBuilder result, int data ) : void
format CSVFormat The way to format this list.
result StringBuilder This string will have the values appended to it.
data int The array of doubles to use.
리턴 void