Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
AggregateConvexHull.cs
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the Kinetica schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 
7 using System.Collections.Generic;
8 
9 
10 
11 namespace kinetica
12 {
13 
21  {
22 
28  public string table_name { get; set; }
29 
32  public string x_column_name { get; set; }
33 
36  public string y_column_name { get; set; }
37 
40  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
41 
42 
46 
65  string x_column_name,
66  string y_column_name,
67  IDictionary<string, string> options = null)
68  {
69  this.table_name = table_name ?? "";
70  this.x_column_name = x_column_name ?? "";
71  this.y_column_name = y_column_name ?? "";
72  this.options = options ?? new Dictionary<string, string>();
73  } // end constructor
74 
75  } // end class AggregateConvexHullRequest
76 
77 
78 
83  {
84 
87  public IList<double> x_vector { get; set; } = new List<double>();
88 
91  public IList<double> y_vector { get; set; } = new List<double>();
92 
95  public int count { get; set; }
96  public bool is_valid { get; set; }
97 
99  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
100 
101  } // end class AggregateConvexHullResponse
102 
103 
104 
105 
106 } // end namespace kinetica
A set of results returned by Kinetica.aggregateConvexHull(string,string,string,IDictionary{string, string}).
string y_column_name
Name of the column containing the y coordinates of the points for the operation being performed...
IDictionary< string, string > options
Optional parameters.
AggregateConvexHullRequest(string table_name, string x_column_name, string y_column_name, IDictionary< string, string > options=null)
Constructs an AggregateConvexHullRequest object with the specified parameters.
IList< double > x_vector
Array of x coordinates of the resulting convex set.
A set of parameters for Kinetica.aggregateConvexHull(string,string,string,IDictionary{string, string}).
IDictionary< string, string > info
Additional information.
string table_name
Name of table on which the operation will be performed.
string x_column_name
Name of the column containing the x coordinates of the points for the operation being performed...
AggregateConvexHullRequest()
Constructs an AggregateConvexHullRequest object with default parameters.
int count
Count of the number of points in the convex set.
IList< double > y_vector
Array of y coordinates of the resulting convex set.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14