mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-13 17:06:32 +00:00
26 lines
372 B
PHP
26 lines
372 B
PHP
|
<?php
|
||
|
declare(strict_types = 1);
|
||
|
|
||
|
namespace Phpml\Math;
|
||
|
|
||
|
class Product
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* @param array $a
|
||
|
* @param array $b
|
||
|
*
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function scalar(array $a, array $b)
|
||
|
{
|
||
|
$product = 0;
|
||
|
foreach ($a as $index => $value) {
|
||
|
$product += $value * $b[$index];
|
||
|
}
|
||
|
|
||
|
return $product;
|
||
|
}
|
||
|
|
||
|
}
|