HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux sci 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: tpdc (1002)
PHP: 7.4.3-4ubuntu2.29
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/nsci/wp-content/plugins/tablepress/libraries/vendor/Matrix/Operators/Operator.php
<?php

namespace TablePress\Matrix\Operators;

use TablePress\Matrix\Matrix;
use TablePress\Matrix\Exception;

abstract class Operator
{
	/**
	 * Stored internally as a 2-dimension array of values
	 *
	 * @property mixed[][] $matrix
	 **/
	protected $matrix;

	/**
	 * Number of rows in the matrix
	 *
	 * @property integer $rows
	 **/
	protected $rows;

	/**
	 * Number of columns in the matrix
	 *
	 * @property integer $columns
	 **/
	protected $columns;

	/**
	 * Create an new handler object for the operation
	 *
	 * @param TablePress\Matrix $matrix The base TablePress\Matrix object on which the operation will be performed
	 */
	public function __construct(TablePress\Matrix $matrix)
	{
		$this->rows = $matrix->rows;
		$this->columns = $matrix->columns;
		$this->matrix = $matrix->toArray();
	}

	/**
	 * Compare the dimensions of the matrices being operated on to see if they are valid for addition/subtraction
	 *
	 * @param TablePress\Matrix $matrix The second TablePress\Matrix object on which the operation will be performed
	 * @throws Exception
	 */
	protected function validateMatchingDimensions(TablePress\Matrix $matrix): void
	{
		if (($this->rows != $matrix->rows) || ($this->columns != $matrix->columns)) {
			throw new Exception('Matrices have mismatched dimensions');
		}
	}

	/**
	 * Compare the dimensions of the matrices being operated on to see if they are valid for multiplication/division
	 *
	 * @param TablePress\Matrix $matrix The second TablePress\Matrix object on which the operation will be performed
	 * @throws Exception
	 */
	protected function validateReflectingDimensions(TablePress\Matrix $matrix): void
	{
		if ($this->columns != $matrix->rows) {
			throw new Exception('Matrices have mismatched dimensions');
		}
	}

	/**
	 * Return the result of the operation
	 *
	 * @return TablePress\Matrix
	 */
	public function result(): TablePress\Matrix
	{
		return new Matrix($this->matrix);
	}
}