File: matobj.xml

package info (click to toggle)
gap 4r10p0-7
  • links: PTS
  • area: main
  • in suites: buster
  • size: 47,392 kB
  • sloc: ansic: 118,475; xml: 54,089; sh: 4,112; perl: 1,654; makefile: 274
file content (71 lines) | stat: -rw-r--r-- 2,517 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -->
<!--   matobj.xml               GAP documentation        Max Neunhoeffer  -->
<!--                                                                      -->
<!--   Copyright (C) 2011 The GAP Group                                   -->
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -->

<Chapter Label="Vector and Matrix Objects">
<Heading>Vector and Matrix Objects</Heading>

This chapter is work in progress. It will eventually describe the new
interface to vector and matrix objects.
<P/>
Traditionally, vectors in &GAP; have been lists and matrices have been 
lists of lists (of equal length). Unfortunately, such lists cannot
store their type and so it is impossible to use the full advantages of
&GAP;'s method selection on them. This situation is unsustainable in the
long run since more special representations (compressed,
sparse, etc.) have already been and even more will be implemented. 
To eventually solve 
this problem, this chapter describes a new programming interface to
vectors and matrices.

<Section Label="Fundamental Ideas and Rules">
    <Heading>Fundamental Ideas and Rules</Heading>

<#Include Label="MatObj_Overview">

</Section>

<Section Label="Categories of Vectors and Matrices">
    <Heading>Categories of Vectors and Matrices</Heading>

</Section>

<Section Label="Constructing Vector and Matrix Objects">
    <Heading>Constructing Vector and Matrix Objects</Heading>
</Section>

<Section Label="Operations for Vector Objects">
    <Heading>Operations for Vector Objects</Heading>

    <#Include Label="MatObj_PositionNonZero">
    <#Include Label="MatObj_PositionLastNonZero">
    <#Include Label="MatObj_ListOp">
    <#Include Label="MatObj_UnpackVector">
    <#Include Label="MatObj_ConcatenationOfVectors">
    <#Include Label="MatObj_ExtractSubVector">
    <#Include Label="MatObj_ZeroVector">
    <#Include Label="MatObj_ConstructingFilter_Vector">
    <#Include Label="MatObj_Randomize_Vectors">
    <#Include Label="MatObj_WeightOfVector">
    <#Include Label="MatObj_DistanceOfVectors">

</Section>

<Section Label="Operations for Row List Matrix Objects">
    <Heading>Operations for Row List Matrix Objects</Heading>

</Section>

<Section Label="Operations for Flat Matrix Objects">
    <Heading>Operations for Flat Matrix Objects</Heading>

</Section>

</Chapter>

<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -->
<!-- %% -->
<!-- %E -->