Divide a Physical object by a double.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public static Physical operator /(
	Physical x,
	double y
)
Visual Basic (Declaration)
Public Shared Operator / ( _
	x As Physical, _
	y As Double _
) As Physical
Visual C++
public:
static Physical operator /(
	Physical x, 
	double y
)

Parameters

x
Type: Imsl.Math..::.Physical
A Physical object which is the numerator.
y
Type: System..::.Double
A double object which is the divisor.

Return Value

A Physical object which is the result of x/y.

See Also