MathPHP\LinearAlgebra\Vector::subtract PHP Метод

subtract() публичный Метод

A = [a₁, a₂, a₃] B = [b₁, b₂, b₃] A - B = [a₁ - b₁, a₂ - b₂, a₃ - b₃]
public subtract ( Vector $B ) : Vector
$B Vector
Результат Vector
    public function subtract(Vector $B) : Vector
    {
        if ($B->getN() !== $this->n) {
            throw new Exception\VectorException('Vectors must be the same length for subtraction');
        }
        $R = Map\Multi::subtract($this->A, $B->getVector());
        return new Vector($R);
    }