[top][index]
search for:

symmetricPower(ZZ,Matrix) -- symmetric power

Synopsis:

  • Usage: g = symmetricPower(i,f)
  • Function: symmetricPower -- symmetric power
  • Input:
  • i, an instance of class ZZ.
  • f, an instance of class Matrix.
  • Output:
  • g, an instance of class Matrix: the i-th symmetric power of the matrix f.
  • Note: in the current implementation, f should have just one row.

    Code:

         -- ../../../Macaulay2/m2/multilin.m2:7-9
         symmetricPower(ZZ, Matrix) := Matrix => (i,m) -> (
              sendgg(ggPush m, ggINT, gg i, ggsymm);
              getMatrix ring m)

    [top][index]
    search for: