ILNumerics Ultimate VS

ExtensionMethods.mean Method (ConcreteArray<SByte, Array<SByte>, InArray<SByte>, OutArray<SByte>, RetArray<SByte>, Storage<SByte>>, Boolean)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
[numpy API] Create a scalar array with the mean of all elements of A.

[ILNumerics numpy Module]

Namespace:  ILNumerics
Assembly:  ILNumerics.numpy (in ILNumerics.numpy.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax

public static RetArray<double> mean(
	this ConcreteArray<sbyte, Array<sbyte>, InArray<sbyte>, OutArray<sbyte>, RetArray<sbyte>, Storage<sbyte>> A,
	bool keepdims = false
)

Parameters

A
Type: ILNumerics.Core.Arrays.ConcreteArray<SByte, Array<SByte>, InArray<SByte>, OutArray<SByte>, RetArray<SByte>, Storage<SByte>>
The source array. This will not be altered.
keepdims (Optional)
Type: System.Boolean
[Optional] accumulated dimensions remain in the resulting array. Default: (false) accumulated singleton dimensions are removed.

Return Value

Type: RetArray<Double>
A scalar array with the mean of all elements of A.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ConcreteArray<SByte, Array<SByte>, InArray<SByte>, OutArray<SByte>, RetArray<SByte>, Storage<SByte>>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Remarks

Depending on the value of keepdims the array returned will have the same number of dimensions as A (keepdims = true) or with a number of dimensions according to MinNumberOfArrayDimensions.

Empty arrays A produce a scalar array with the default element value for the element data type.

[ILNumerics numpy Module]

See Also

Reference

ExtensionMethods.mean(ConcreteArray<SByte, Array<SByte>, InArray<SByte>, OutArray<SByte>, RetArray<SByte>, Storage<SByte>>, Boolean)