Identifies whether distances are computed between rows or columns of x.

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

Syntax

C#
public virtual bool Row { get; set; }
Visual Basic (Declaration)
Public Overridable Property Row As Boolean
Visual C++
public:
virtual property bool Row {
	bool get ();
	void set (bool value);
}

Field Value

A bool identifying whether distances are computed between rows or columns of x.

Remarks

If Row = true, distances are computed between the rows of x. Otherwise, distances between the columns of x are computed. By default, Row = true.

See Also