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