@@ -19,11 +19,11 @@ |
||
| 19 | 19 | |
| 20 | 20 | class ref { |
| 21 | 21 | |
| 22 | - /** |
|
| 23 | - * |
|
| 24 | - * @param \Np\matrix $m |
|
| 25 | - * @return matrix|null |
|
| 26 | - */ |
|
| 22 | + /** |
|
| 23 | + * |
|
| 24 | + * @param \Np\matrix $m |
|
| 25 | + * @return matrix|null |
|
| 26 | + */ |
|
| 27 | 27 | public static function factory(\Np\matrix $m): matrix|null { |
| 28 | 28 | $ipiv = vector::factory(min($m->row, $m->col), vector::INT); |
| 29 | 29 | $ar = $m->copyMatrix(); |
@@ -24,8 +24,8 @@ |
||
| 24 | 24 | * @copyright (c) 2020-2021, Shubham Chaudhary |
| 25 | 25 | * |
| 26 | 26 | */ |
| 27 | - class vector extends nd { |
|
| 28 | - use ops, linAlg; |
|
| 27 | + class vector extends nd { |
|
| 28 | + use ops, linAlg; |
|
| 29 | 29 | |
| 30 | 30 | /** |
| 31 | 31 | * Factory method to build a new vector. |