Enumerates all the spins that can be obtained by combining two spins.

Namespace: Meta.Numerics.Spin
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 2.1.0.0 (2.1.0.0)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public static Spin[] Combine(
	Spin j1,
	Spin j2
)
Public Shared Function Combine ( _
	j1 As Spin, _
	j2 As Spin _
) As Spin()
public:
static array<Spin>^ Combine(
	Spin j1, 
	Spin j2
)
static member Combine : 
        j1 : Spin * 
        j2 : Spin -> Spin[] 

Parameters

j1
Spin
The first spin.
j2
Spin
The second spin.

Return Value

A list of spins which may be obtained.

See Also