PHP Classes

File: examples/matrixInverse.php

Recommend this page to a friend!
  Classes of ASCOOS CMS   TMathsHandler   examples/matrixInverse.php   Download  
File: examples/matrixInverse.php
Role: Example script
Content type: text/plain
Description: Calculate the inverse of a matrix.
Class: TMathsHandler
Perform mathematics and geometric calculations
Author: By
Last change:
Date: 1 month ago
Size: 1,926 bytes
 

Contents

Class file image Download
<?php
/**
 * __ _ ___ ___ ___ ___ ___ ____ _ __ ___ ___
 * / _` |/ / / __/ _ \ / _ \ / / / __/| '_ ` _ \ / /
 * | (_| |\ \| (_| (_) | (_) |\ \ | (__ | | | | | |\ \
 * \__,_|/__/ \___\___/ \___/ /__/ \___\|_| |_| |_|/__/
 *
 *
 ************************************************************************************
 * @ASCOOS-NAME : ASCOOS CMS 25' *
 * @ASCOOS-VERSION : 25.0.0 *
 * @ASCOOS-CATEGORY : Framework (Frontend and Administrator Side) *
 * @ASCOOS-CREATOR : Drogidis Christos *
 * @ASCOOS-SITE : www.ascoos.com *
 * @ASCOOS-LICENSE : [Commercial] http://docs.ascoos.com/lics/ascoos/AGL.html *
 * @ASCOOS-COPYRIGHT : Copyright (c) 2007 - 2025, AlexSoft Software. *
 ************************************************************************************
 *
 * @package : ASCOOS FRAMEWORK - TMathsHandler Examples
 * @subpackage : Calculate the inverse of a matrix.
 * @source : examples/matrixInverse.php
 * @fileNo :
 * @version : 25.0.0
 * @build : 10845
 * @created : 2025-01-09 07:00:00 UTC+2
 * @updated :
 * @author : Drogidis Christos
 * @authorSite : www.alexsoft.gr
 * @license : AGL-F
 *
 * @since PHP 8.2
 */

// REQUIRE ASCOOS FRAMEWORK
require_once '[ASCOOS FRAMEWORK PATH]/autoload.php';
require_once
'../class/coreMaths.php';
;

use
ASCOOS\FRAMEWORK\Kernel\Maths\TMathsHandler;

$matrix = [
    [
4, 7],
    [
2, 6]
];

$mathsHandler = new TMathsHandler();
$inverse = $mathsHandler->matrixInverse($matrix);

echo
"Inverse of the matrix: ";
print_r($inverse);