<?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);
|