php-ml/tests/Phpml/Math/ProductTest.php

18 lines
405 B
PHP
Raw Normal View History

2016-04-21 00:23:03 +02:00
<?php
declare(strict_types = 1);
namespace tests\Phpml\Math;
use Phpml\Math\Product;
class ProductTest extends \PHPUnit_Framework_TestCase
{
public function testScalarProduct()
{
2016-04-21 22:12:45 +02:00
$this->assertEquals(10, Product::scalar([2, 3], [-1, 4]));
$this->assertEquals(-0.1, Product::scalar([1, 4, 1], [-2, 0.5, -0.1]));
$this->assertEquals(8, Product::scalar([2], [4]));
2016-04-21 00:23:03 +02:00
}
}