JSPM

polysmaxcommon

1.1.0
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 2
    • Score
      100M100P100Q13928F
    • License ISC

    求一元多项式的最大公约数

    Package Exports

    • polysmaxcommon
    • polysmaxcommon/src/index.js

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (polysmaxcommon) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    将您的一元多项式定义为一个数组,数组内值为每一项系数,index值则为该项的次数; 例如:1+1x+1x^2 ==> [1,1,1] 提供polyMul(),polyMinus(),polyDivisor(),polyMaxDivisor() 分别求:积、差、余数、最大公约数