|  | SubsetSubtraction(Subset, Subset) Operator | 
            Subtracts one subset from another.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static Subset operator -(
	Subset x,
	Subset y
)
Public Shared Operator - ( 
	x As Subset,
	y As Subset
) As Subset
public:
static Subset^ operator -(
	Subset^ x, 
	Subset^ y
)
static let inline (-)
        x : Subset * 
        y : Subset  : SubsetParameters
- x  Subset
- A subset.
- y  Subset
- A subset.
Return Value
SubsetA new subset containing the indices in 
x that are not in 
y.
 See Also
See Also