Beispiel #1
0
 public static PyObject operator /(PyArray <T> x, PyArray <T> y)
 {
     return(PyNumber.TrueDivide(x, y));
 }
Beispiel #2
0
 public static PyObject operator *(PyArray <T> x, PyArray <T> y)
 {
     return(PyNumber.Multiply(x, y));
 }
Beispiel #3
0
 public static PyObject operator +(PyArray <T> x, PyArray <T> y)
 {
     return(PyNumber.Add(x, y));
 }
Beispiel #4
0
 public static PyObject operator -(PyArray <T> x, PyArray <T> y)
 {
     return(PyNumber.Subtract(x, y));
 }
Beispiel #5
0
 public static PyObject operator +(PyObject x, PyObject y)
 {
     return(PyNumber.Add(x, y));
 }