mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-11 16:15:50 +00:00
17 lines
222 B
PHP
17 lines
222 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Phpml\Math;
|
|
|
|
interface Kernel
|
|
{
|
|
/**
|
|
* @param float|array $a
|
|
* @param float|array $b
|
|
*
|
|
* @return float|array
|
|
*/
|
|
public function compute($a, $b);
|
|
}
|