ILNumerics Ultimate VS

ExtensionMethodsconj Method (Mutablecomplex, Arraycomplex, InArraycomplex, OutArraycomplex, RetArraycomplex, Storagecomplex)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
[numpy API] Conjugates complex elements inplace.

[ILNumerics numpy Module]

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

public static void conj(
	this Mutable<complex, Array<complex>, InArray<complex>, OutArray<complex>, RetArray<complex>, Storage<complex>> A
)

Parameters

A
Type: ILNumerics.Core.ArraysMutablecomplex, Arraycomplex, InArraycomplex, OutArraycomplex, RetArraycomplex, Storagecomplex
Mutable input array.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Mutablecomplex, Arraycomplex, InArraycomplex, OutArraycomplex, RetArraycomplex, Storagecomplex. 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

The operation is efficiently performed on all elements of the input array A inplace.

The operation is performed in multiple threads, according to the current settings of MaxNumberThreads.

Elements of the input array A are directly altered. New memory is only used if the elements of A are currently shared with other arrays. Only in this case a copy is created automatically.

[ILNumerics numpy Module]

See Also

Reference