Package edu.jas.ps

Class PSUtil

java.lang.Object
edu.jas.ps.PSUtil

public class PSUtil extends Object
Power series utilities. For example monic power series.
  • Constructor Details

    • PSUtil

      public PSUtil()
  • Method Details

    • monic

      public static <C extends RingElem<C>> List<MultiVarPowerSeries<C>> monic(List<MultiVarPowerSeries<C>> L)
      Power series list monic.
      Type Parameters:
      C - coefficient type.
      Parameters:
      L - list of power series with field coefficients.
      Returns:
      list of power series with leading coefficient 1.
    • monicUniv

      public static <C extends RingElem<C>> List<UnivPowerSeries<C>> monicUniv(List<UnivPowerSeries<C>> L)
      Univariate power series list monic.
      Type Parameters:
      C - coefficient type.
      Parameters:
      L - list of univariate power series with field coefficients.
      Returns:
      list of univariate power series with leading coefficient 1.