Package edu.jas.ps

Class PSUtil


  • public class PSUtil
    extends java.lang.Object
    Power series utilities. For example monic power series.
    Author:
    Heinz Kredel
    • Constructor Detail

    • Method Detail

      • monic

        public static <C extends RingElem<C>> java.util.List<MultiVarPowerSeries<C>> monic​(java.util.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>> java.util.List<UnivPowerSeries<C>> monicUniv​(java.util.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.