update : 2015.11.03
php.shukuma.com검색:
|
fann_create_train_from_callback(PECL fann >= 1.0.0) fann_create_train_from_callback — Creates the training data struct from a user supplied function 설명
resource fann_create_train_from_callback
( int
$num_data
, int $num_input
, int $num_output
, callable $user_function
)Creates the training data struct from a user supplied function. As the training data are numerable (data 1, data 2...), the user must write a function that receives the number of the training data set (input, output) and returns the set. 인수
반환값 Returns a train data resource on success, or 예제
Example #1 fann_create_train_from_callback() example
<?php 참고
|