UnknownSec Bypass
403
:
/
var
/
www
/
cotutilitydash
/
vendorexcel
/
markbaker
/
matrix
/
classes
/
src
/
Decomposition
/ [
drwxrwxr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
Decomposition.php
<?php namespace Matrix\Decomposition; use Matrix\Exception; use Matrix\Matrix; class Decomposition { const LU = 'LU'; const QR = 'QR'; /** * @throws Exception */ public static function decomposition($type, Matrix $matrix) { switch (strtoupper($type)) { case self::LU: return new LU($matrix); case self::QR: return new QR($matrix); default: throw new Exception('Invalid Decomposition'); } } }
Copyright © 2025 - UnknownSec