Passed
Push — main ( 68cbd3...ae7833 )
by Shubham
02:22 queued 11s
created
src/core/nd.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -30,21 +30,21 @@
 block discarded – undo
30 30
     public $data;
31 31
     protected $_time = null, $_mem = null;
32 32
     
33
-    public function checkDimensions(\Np\matrix|\Np\vector $Obj1, \Np\matrix $Obj2) {
34
-        if($Obj1->col == $Obj2->row){
33
+    public function checkDimensions(\Np\matrix | \Np\vector $Obj1, \Np\matrix $Obj2) {
34
+        if ($Obj1->col == $Obj2->row) {
35 35
             return true;
36 36
         }
37 37
         self::_dimensionaMisMatchErr('Mismatch Dimensions of given Objects! Obj-A col & Obj-B row amount need to be the same!');
38 38
     }
39 39
     
40
-    public function checkDtype(\Np\matrix|\Np\vector $Obj1, \Np\matrix|\Np\vector $Obj2){
41
-        if($Obj1->dtype == $Obj2->dtype) {
40
+    public function checkDtype(\Np\matrix | \Np\vector $Obj1, \Np\matrix | \Np\vector $Obj2) {
41
+        if ($Obj1->dtype == $Obj2->dtype) {
42 42
             return true;
43 43
         }
44 44
         self::_dtypeErr('mismatch data type of given Np\Objects!');
45 45
     }
46 46
     
47
-    public function checkShape(\Np\matrix|\Np\vector $Obj1, \Np\matrix|\Np\vector $Obj2) {
47
+    public function checkShape(\Np\matrix | \Np\vector $Obj1, \Np\matrix | \Np\vector $Obj2) {
48 48
         if ($Obj1 instanceof \Np\vector && $Obj2 instanceof \Np\vector) {
49 49
             if ($Obj1->col == $Obj2->col) {
50 50
                 return true;
Please login to merge, or discard this patch.
examples/matrix.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@
 block discarded – undo
7 7
 $a = matrix::randn(1000, 1000);
8 8
 $b = matrix::randn(1000, 1000);
9 9
 $a->dot($b);
10
-$a->getMemory();           // get memory use
11
-$a->time();               // get time
10
+$a->getMemory(); // get memory use
11
+$a->time(); // get time
12 12
 /**
13 13
  * Memory-Consumed 7.7mb
14 14
  * Time-Consumed:- 0.18390893936157
Please login to merge, or discard this patch.