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