Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it

563479 views
1
2
3 Convex Objects
3
4
Convex objects are the main structure of Convex. All other structures,
5
namely fans, cones, and polytopes are derived from this structure. So all
6
methods of this structure also apply to the other data types.
7
8
9
3.1 Convex Objects: Category and Representations
10
11
3.1-1 IsConvexObject
12
13
IsConvexObject( M )  Category
14
Returns: true or false
15
16
The GAP category of convex objects, the main category of this package.
17
18
19
3.2 Convex objects: Properties
20
21
3.2-1 IsFullDimensional
22
23
IsFullDimensional( conv )  property
24
Returns: true or false
25
26
Checks if the combinatorial dimension of the convex object conv is the same
27
as the dimension of the ambient space.
28
29
30
3.3 Convex objects: Attributes
31
32
3.3-1 Dimension
33
34
Dimension( conv )  attribute
35
Returns: an integer
36
37
Returns the combinatorial dimension of the convex object conv. This is the
38
dimension of the smallest space i which conv can be embedded.
39
40
3.3-2 AmbientSpaceDimension
41
42
AmbientSpaceDimension( conv )  attribute
43
Returns: an integer
44
45
Returns the dimension of the ambient space of the object conv.
46
47
3.3-3 ContainingGrid
48
49
ContainingGrid( conv )  attribute
50
Returns: a homalg module
51
52
Returns the ambient space of the object conv as a homalg module.
53
54
55
3.4 Convex objects: Methods
56
57
3.4-1 DrawObject
58
59
DrawObject( conv )  operation
60
Returns: 0
61
62
Draws a nice picture of the object conv, if your computer supports Java. As
63
a side effect, you might not be able to exit GAP anymore.
64
65
3.4-2 WeakPointerToExternalObject
66
67
WeakPointerToExternalObject( conv )  operation
68
Returns: a pointer
69
70
Returns a pointer to an external object which is the basis of conv. This
71
method is not used any more.
72
73
74