aggregateConvexHull
public AggregateConvexHullResponse aggregateConvexHull(AggregateConvexHullRequest request) throws GPUdbException Calculates and returns the convex hull for the values in a table specified bytableName.Parameters:request-Requestobject containing the parameters for the operation.Returns:Responseobject containing the results of the operation.Throws:GPUdbException- if an error occurs during the operation.aggregateConvexHull
public AggregateConvexHullResponse aggregateConvexHull(String tableName, String xColumnName, String yColumnName, Map<String, String> options) throws GPUdbException Calculates and returns the convex hull for the values in a table specified bytableName.Parameters:tableName- Name 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.xColumnName- Name of the column containing the x coordinates of the points for the operation being performed.yColumnName- Name of the column containing the y coordinates of the points for the operation being performed.options- Optional parameters. The default value is an emptyMap.Returns:Responseobject containing the results of the operation.Throws:GPUdbException- if an error occurs during the operation.