Phpml\NeuralNetwork\Node::getOutput PHP Method

getOutput() public method

public getOutput ( ) : float
return float
    public function getOutput() : float;

Usage Example

Example #1
0
 /**
  * @return float
  */
 public function getOutput() : float
 {
     return $this->weight * $this->node->getOutput();
 }