File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 1
1
- Unreleased
2
+
3
+ - 1.0.2
2
4
- Added ref using row elimination method
3
5
- Added universal comparison methods to tensor API
4
6
- Added convolve operation to Vector and Matrix
Original file line number Diff line number Diff line change @@ -106,6 +106,16 @@ public function mod($b);
106
106
*/
107
107
public function equal ($ b );
108
108
109
+ /**
110
+ * A universal function to compute the not equal comparison of
111
+ * this tensor and another tensor element-wise.
112
+ *
113
+ * @param mixed $b
114
+ * @throws \InvalidArgumentException
115
+ * @return mixed
116
+ */
117
+ public function notEqual ($ b );
118
+
109
119
/**
110
120
* A universal function to compute the greater than comparison of a
111
121
* tensor and another tensor element-wise.
You can’t perform that action at this time.
0 commit comments