Table of Contents

Enum BinaryOp

Namespace
NumSharp.Backends.Kernels
Assembly
NumSharp.dll

Binary operations supported by kernel providers.

public enum BinaryOp
Extension Methods

Fields

Add = 0
Subtract = 1
Multiply = 2
Divide = 3
Mod = 4
BitwiseAnd = 5
BitwiseOr = 6
BitwiseXor = 7
Power = 8
FloorDivide = 9
LeftShift = 10
RightShift = 11
ATan2 = 12

Element-wise arc tangent of y/x choosing the quadrant correctly (np.arctan2)