@@ -29,8 +29,7 @@ discard block |
||
| 29 | 29 | $r->data[$i] = $sigma; |
| 30 | 30 | } |
| 31 | 31 | return $r; |
| 32 | - } |
|
| 33 | - else { |
|
| 32 | + } else { |
|
| 34 | 33 | throw new dtypeException('Err::given vectors has diffrent data type!'); |
| 35 | 34 | } |
| 36 | 35 | } |
@@ -69,8 +68,7 @@ discard block |
||
| 69 | 68 | } |
| 70 | 69 | } |
| 71 | 70 | return $rc; |
| 72 | - } |
|
| 73 | - else { |
|
| 71 | + } else { |
|
| 74 | 72 | throw new \Exception('Err::given matrixes has different data type!'); |
| 75 | 73 | } |
| 76 | 74 | } |
@@ -848,8 +848,7 @@ |
||
| 848 | 848 | for ($i = 0; $i < $this->row ; ++$i) { |
| 849 | 849 | $this->data[$i * $this->col + $i] *= $c; |
| 850 | 850 | } |
| 851 | - } |
|
| 852 | - else{ |
|
| 851 | + } else{ |
|
| 853 | 852 | for ($i = $this->row; $i > 0 ; --$i) { |
| 854 | 853 | $this->data[$i * $this->col - $i] *= $c; |
| 855 | 854 | } |
@@ -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. |
@@ -26,8 +26,10 @@ |
||
| 26 | 26 | $lead = 0; |
| 27 | 27 | $ar = $m->copy(); |
| 28 | 28 | for ($r = 0; $r < $ar->row; ++$r) { |
| 29 | - if ($lead >= $ar->col) |
|
| 30 | - break; { |
|
| 29 | + if ($lead >= $ar->col) { |
|
| 30 | + break; |
|
| 31 | + } |
|
| 32 | + { |
|
| 31 | 33 | $i = $r; |
| 32 | 34 | while ($ar->data[$i * $ar->col + $lead] == 0) { |
| 33 | 35 | $i++; |
@@ -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->copy(); |