Exemplo n.º 1
0
 public static NDview <Type> operator -(NDarray <Type> a, double b) => ND.Sub <Type>(a, b);
Exemplo n.º 2
0
 public static NDview <Type> operator -(NDview <Type> a, NDarray <Type> b) => ND.Sub(a, b.View);
Exemplo n.º 3
0
 public static NDview <Type> operator -(double a, NDarray <Type> b) => ND.Sub <Type>(a, b);
Exemplo n.º 4
0
 public static NDview <Type> operator -(NDview <Type> a, NDview <Type> b) => ND.Sub(a, b);