C# 클래스 NumSharp.NDArray

A powerful N-dimensional array object Inspired from https://www.numpy.org/devdocs/user/quickstart.html
파일 보기 프로젝트 열기: SciSharp/NumSharp.Lite 1 사용 예제들

공개 메소드들

메소드 설명
unique ( ) : NDArray

Find the unique elements of an array.

Returns the sorted unique elements of an array.There are three optional outputs in addition to the unique elements:

* the indices of the input array that give the unique values

* the indices of the unique array that reconstruct the input array

* the number of times each unique value comes up in the input array

https://docs.scipy.org/doc/numpy/reference/generated/numpy.unique.html

메소드 상세

unique() 공개 메소드

Find the unique elements of an array.

Returns the sorted unique elements of an array.There are three optional outputs in addition to the unique elements:

* the indices of the input array that give the unique values

* the indices of the unique array that reconstruct the input array

* the number of times each unique value comes up in the input array

https://docs.scipy.org/doc/numpy/reference/generated/numpy.unique.html
public unique ( ) : NDArray
리턴 NDArray