C# Класс Encog.Util.CSV.NumberList

Показать файл Открыть проект

Открытые методы

Метод Описание
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