Files
trueskill/src/Numerics/IdentityMatrix.php

9 lines
196 B
PHP
Raw Normal View History

<?php namespace Moserware\Skills\Numerics;
class IdentityMatrix extends DiagonalMatrix
{
public function __construct($rows)
{
parent::__construct(array_fill(0, $rows, 1));
}
}