Beispiel #1
0
 def __lt__(self, other):
     return Math.bimath(self, other, func=Math.lessThan)
Beispiel #2
0
 def __eq__(self, other):
     return Math.bimath(self, other, func=Math.equal)
Beispiel #3
0
 def __gt__(self, other):
     return Math.bimath(self, other, func=Math.greaterThan)
Beispiel #4
0
 def __sub__(self, other):
     """ Subtract all individual components of this array by the other Nodex """
     return Math.bimath(self, other, func=Math.subtract)
Beispiel #5
0
 def __pow__(self, other):
     """ Square all individual components of this array by the other Nodex """
     return Math.bimath(self, other, func=Math.power)
Beispiel #6
0
 def __mul__(self, other):
     """ Multiply the other `Nodex` with this instance using * """
     return Math.bimath(self, other, func=Math.multiply)
Beispiel #7
0
 def __div__(self, other):
     """ Divide this instance by other `Nodex` using / """
     return Math.bimath(self, other, func=Math.divide)
Beispiel #8
0
 def __mul__(self, other):
     """ Multiply all individual components of this array with the other Nodex """
     return Math.bimath(self, other, func=Math.multiply)
Beispiel #9
0
 def __pow__(self, other):
     """ Square all individual components of this array by the other Nodex """
     return Math.bimath(self, other, func=Math.power)
Beispiel #10
0
 def __add__(self, other):
     """ Add all individual components of this array to the other Nodex """
     return Math.bimath(self, other, func=Math.sum)
Beispiel #11
0
 def __sub__(self, other):
     """ Subtract all individual components of this array by the other Nodex """
     return Math.bimath(self, other, func=Math.subtract)
Beispiel #12
0
 def __div__(self, other):
     """ Divide this instance by other `Nodex` using / """
     return Math.bimath(self, other, func=Math.divide)
Beispiel #13
0
 def __pow__(self, other):
     """ Square this instance by other `Nodex` using pow() """
     return Math.bimath(self, other, func=Math.power)
Beispiel #14
0
 def __mul__(self, other):
     """ Multiply the other `Nodex` with this instance using * """
     return Math.bimath(self, other, func=Math.multiply)
Beispiel #15
0
 def __sub__(self, other):
     """ Subtract the other `Nodex` from this instance using - """
     return Math.bimath(self, other, func=Math.subtract)
Beispiel #16
0
 def __div__(self, other):
     """ Divide all individual components of this array by the other Nodex """
     return Math.bimath(self, other, func=Math.divide)
Beispiel #17
0
 def __sub__(self, other):
     """ Subtract the other `Nodex` from this instance using - """
     return Math.bimath(self, other, func=Math.subtract)
Beispiel #18
0
 def __eq__(self, other):
     return Math.bimath(self, other, func=Math.equal)
Beispiel #19
0
 def __pow__(self, other):
     """ Square this instance by other `Nodex` using pow() """
     return Math.bimath(self, other, func=Math.power)
Beispiel #20
0
 def __ne__(self, other):
     return Math.bimath(self, other, func=Math.notEqual)
Beispiel #21
0
 def __add__(self, other):
     """ Add all individual components of this array to the other Nodex """
     return Math.bimath(self, other, func=Math.sum)
Beispiel #22
0
 def __gt__(self, other):
     return Math.bimath(self, other, func=Math.greaterThan)
Beispiel #23
0
 def __mul__(self, other):
     """ Multiply all individual components of this array with the other Nodex """
     return Math.bimath(self, other, func=Math.multiply)
Beispiel #24
0
 def __ge__(self, other):
     return Math.bimath(self, other, func=Math.greaterOrEqual)
Beispiel #25
0
 def __div__(self, other):
     """ Divide all individual components of this array by the other Nodex """
     return Math.bimath(self, other, func=Math.divide)
Beispiel #26
0
 def __lt__(self, other):
     return Math.bimath(self, other, func=Math.lessThan)
Beispiel #27
0
 def __ne__(self, other):
     return Math.bimath(self, other, func=Math.notEqual)
Beispiel #28
0
 def __le__(self, other):
     return Math.bimath(self, other, func=Math.lessOrEqual)
Beispiel #29
0
 def __ge__(self, other):
     return Math.bimath(self, other, func=Math.greaterOrEqual)
Beispiel #30
0
 def __add__(self, other):
     """ (+ operator) Add to the other `Nodex` using + """
     return Math.bimath(self, other, func=Math.sum)
Beispiel #31
0
 def __le__(self, other):
     return Math.bimath(self, other, func=Math.lessOrEqual)
Beispiel #32
0
 def __add__(self, other):
     """ (+ operator) Add to the other `Nodex` using + """
     return Math.bimath(self, other, func=Math.sum)