public INumber Add <TOther>(INumber a, TOther b) { return(CheckNice(UnderlyingHandler.Add(CheckNice(a), b))); }
public INumber Add(INumber a, INumber b) { return(CheckNice(UnderlyingHandler.Add(CheckNice(a), CheckNice(b)))); }
public INDArray Add(INDArray array, INumber value) { return(CheckNice(UnderlyingHandler.Add(CheckNice(array), CheckNice(value)))); }
public INDArray Add(INDArray a, INDArray b) { CheckEqualLength(a, b, "add ndarrays elementwise"); return(CheckNice(UnderlyingHandler.Add(CheckNice(a), CheckNice(b)))); }
public INDArray Add <TOther>(INDArray array, TOther value) { return(CheckNice(UnderlyingHandler.Add(CheckNice(array), value))); }