chippyash/Math-Matrix

View on GitHub
src/Chippyash/Math/Matrix/Traits/AssertMatrixIsNonSingular.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/*
 * Math-Matrix library
 *
 * @author Ashley Kitson <akitson@zf4.biz>
 * @copyright Ashley Kitson, UK, 2014
 * @licence GPL V3 or later : http://www.gnu.org/licenses/gpl.html
 * @link http://en.wikipedia.org/wiki/Matrix_(mathematics)
 */
namespace Chippyash\Math\Matrix\Traits;

use Chippyash\Math\Matrix\NumericMatrix;
use Chippyash\Math\Matrix\Exceptions\ComputationException;
use Chippyash\Math\Matrix\Attribute\IsNonsingular;

/**
 * Assert matrix is non singular
 */
Trait AssertMatrixIsNonSingular
{

    /**
     * Check that matrix is non singular
     * i.e. det(A) != 0
     *
     * @param \Chippyash\Math\Matrix\NumericMatrix $matrix
     *
     * @param string $msg Optional message
     *
     * @return Fluent Interface
     *
     * @throws ComputationException
     */
    protected function assertMatrixIsNonSingular(NumericMatrix $matrix , $msg = 'Matrix is non singular')
    {
        $attr = new IsNonsingular();
        if ($attr->is($matrix)) {
            return $this;
        }

        throw new ComputationException($msg, 110);
    }
}