Skip to main content

◆ aggregateConvexHull() [1/2]

AggregateConvexHullResponse kinetica.Kinetica.aggregateConvexHull (AggregateConvexHullRequestrequest_)
inline

Calculates and returns the convex hull for the values in a table specified by table_name.

Parameters
request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

Definition at line 3642 of file KineticaFunctions.cs.

◆ aggregateConvexHull() [2/2]

AggregateConvexHullResponse kinetica.Kinetica.aggregateConvexHull (stringtable_name,
stringx_column_name,
stringy_column_name,
IDictionary< string, string >options = null )
inline

Calculates and returns the convex hull for the values in a table specified by table_name .

Parameters
table_nameName of table on which the operation will be performed. Must be an existing table, in [schema_name.]table_name format, using standard name resolution rules.
x_column_nameName of the column containing the x coordinates of the points for the operation being performed.
y_column_nameName of the column containing the y coordinates of the points for the operation being performed.
optionsOptional parameters. The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 3684 of file KineticaFunctions.cs.

◆ AggregateConvexHullAsync() [1/2]

async System.Threading.Tasks.Task< AggregateConvexHullResponse > kinetica.Kinetica.AggregateConvexHullAsync (AggregateConvexHullRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Calculates and returns the convex hull for the values in a table specified by table_name.

(async)

Parameters
request_Request object containing the parameters for the operation.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 3660 of file KineticaFunctions.cs.

◆ AggregateConvexHullAsync() [2/2]

async System.Threading.Tasks.Task< AggregateConvexHullResponse > kinetica.Kinetica.AggregateConvexHullAsync (stringtable_name,
stringx_column_name,
stringy_column_name,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Calculates and returns the convex hull for the values in a table specified by table_name .

(async)

Parameters
table_nameName of table on which the operation will be performed. Must be an existing table, in [schema_name.]table_name format, using standard name resolution rules.
x_column_nameName of the column containing the x coordinates of the points for the operation being performed.
y_column_nameName of the column containing the y coordinates of the points for the operation being performed.
optionsOptional parameters. The default value is an empty Dictionary.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 3712 of file KineticaFunctions.cs.