[Diese Dokumentation ist noch nicht fertig und kann sich bis zur entgültigen Version noch ändern.]
Berechnet eine Ergebnismatrix, welche die halbe Kantenlänge von der Quellmatrix besitzt.

Namespace: DynamicNode.Types.Base
Assembly: DataTypesAndTools (in DataTypesAndTools.dll) Version: 1.3.4679.19814 (1.3.0.0)

Syntax

C#
public static Matrix<float> ScaleDownBy2(
	Matrix<float> source
)
Visual Basic
Public Shared Function ScaleDownBy2 ( _
	source As Matrix(Of Single) _
) As Matrix(Of Single)
F#
static member ScaleDownBy2 : 
        source:Matrix<float32> -> Matrix<float32> 

Parameters

source
Type: DynamicNode.Types.Base..::..Matrix<(Of <(<'Single>)>)>
Die Quellmatrix.

Return Value

Die Ergebnismatrix.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionWird geworfen, wenn für sourcenull übergeben wird.
System..::..ArgumentExceptionWird geworfen, wenn die Kantenlänge von source kleiner als 2 ist.

See Also