matrixalgebra:执行所有基本矩阵代数运算的矩阵代数类

时间:2024-07-08 10:18:00
【文件属性】:

文件名称:matrixalgebra:执行所有基本矩阵代数运算的矩阵代数类

文件大小:4KB

文件格式:ZIP

更新时间:2024-07-08 10:18:00

PHP

矩阵代数 执行所有基本矩阵代数运算的矩阵代数类 用法 <?php require_once ( 'matrix.php' ); header ( "Content-type: text/plain" ); $ matrix = new Matrix (); $ a = $ matrix -> create ( '[1 2 3;4 5 6;7 8 9]' ); // Let's see A $ matrix -> plot ( $ a , "A matrix" ); $ b = $ matrix -> create ( '[9 8 7;6 5 4;3 2 1]' ); // Let's see B $ matrix -> plot ( $ b , "B matrix" ); // Now suma A and B $ result = $ matrix -> sum ( $ a , $ b


【文件预览】:
matrixalgebra-master
----demo.php(503B)
----matrix.php(11KB)
----README.md(637B)

网友评论