Macaulay2 » Documentation
Packages » PathSignatures :: pwLinPath
next | previous | forward | backward | up | index | toc

pwLinPath -- constructor of a piecewise linear path from a matrix

Description

Creates a piecewise linear Path whose increments are the columns of the given matrix.

i1 : M = id_(QQ^3)

o1 = | 1 0 0 |
     | 0 1 0 |
     | 0 0 1 |

              3       3
o1 : Matrix QQ  <-- QQ
i2 : pwLinPath(M)

o2 = Path in 3-dimensional space with 3 polynomial segments:

     {{t, 0, 0}, {0, t, 0}, {0, 0, t}}

o2 : Path

See also

Ways to use pwLinPath:

  • pwLinPath(Matrix)

For the programmer

The object pwLinPath is a method function.


The source of this document is in PathSignatures/documentation.m2:380:0.