pimath 0.0.119 → 0.0.121
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +23 -23
- package/.idea/PI.iml +7 -1
- package/dev/pimath.js +7929 -0
- package/dev/pimath.js.map +1 -0
- package/dist/{pi.js → pimath.js} +7612 -7829
- package/dist/pimath.js.map +1 -0
- package/dist/pimath.min.js +2 -0
- package/dist/pimath.min.js.map +1 -0
- package/docs/assets/main.js +3 -3
- package/docs/assets/search.js +1 -1
- package/docs/assets/style.css +450 -363
- package/docs/classes/Logicalset.Logicalset.html +119 -110
- package/docs/classes/Polynom.Rational.html +230 -227
- package/docs/classes/Vector-1.Vector.html +319 -273
- package/docs/classes/Vector.Point.html +189 -190
- package/docs/classes/algebra_equation.Equation.html +489 -446
- package/docs/classes/algebra_linearSystem.LinearSystem.html +228 -217
- package/docs/classes/algebra_monom.Monom.html +564 -507
- package/docs/classes/algebra_polynom.Polynom.html +774 -753
- package/docs/classes/coefficients_fraction.Fraction.html +573 -565
- package/docs/classes/geometry_circle.Circle.html +299 -299
- package/docs/classes/geometry_line.Line.html +511 -451
- package/docs/classes/geometry_triangle.Triangle.html +273 -264
- package/docs/classes/numeric.Numeric.html +138 -132
- package/docs/classes/shutingyard.Shutingyard.html +144 -133
- package/docs/enums/algebra_equation.PARTICULAR_SOLUTION.html +47 -46
- package/docs/enums/geometry_line.LinePropriety.html +58 -58
- package/docs/enums/shutingyard.ShutingyardMode.html +62 -58
- package/docs/enums/shutingyard.ShutingyardType.html +74 -70
- package/docs/index.html +31 -33
- package/docs/interfaces/algebra_equation.ISolution.html +61 -59
- package/docs/interfaces/algebra_polynom.IEuclidian.html +47 -46
- package/docs/interfaces/geometry_triangle.remarquableLines.html +74 -74
- package/docs/modules/Logicalset.html +33 -38
- package/docs/modules/Polynom.html +33 -38
- package/docs/modules/Vector-1.html +33 -38
- package/docs/modules/Vector.html +33 -38
- package/docs/modules/algebra_equation.html +35 -41
- package/docs/modules/algebra_linearSystem.html +31 -37
- package/docs/modules/algebra_monom.html +33 -39
- package/docs/modules/algebra_polynom.html +35 -41
- package/docs/modules/coefficients_fraction.html +33 -39
- package/docs/modules/geometry_circle.html +31 -37
- package/docs/modules/geometry_line.html +33 -39
- package/docs/modules/geometry_triangle.html +33 -39
- package/docs/modules/numeric.html +31 -37
- package/docs/modules/shutingyard.html +41 -47
- package/docs/types/algebra_monom.literalType.html +33 -37
- package/docs/types/algebra_polynom.PolynomParsingType.html +33 -37
- package/docs/types/coefficients_fraction.FractionParsingType.html +32 -36
- package/docs/types/shutingyard.Token.html +38 -42
- package/docs/types/shutingyard.tokenType.html +40 -44
- package/docs/variables/shutingyard.tokenConstant.html +37 -41
- package/esm/index.d.ts +38 -41
- package/esm/index.js +43 -46
- package/esm/index.js.map +1 -1
- package/esm/maths/algebra/equation.d.ts +119 -117
- package/esm/maths/algebra/equation.js +796 -785
- package/esm/maths/algebra/equation.js.map +1 -1
- package/esm/maths/algebra/linearSystem.d.ts +39 -38
- package/esm/maths/algebra/linearSystem.js +278 -262
- package/esm/maths/algebra/linearSystem.js.map +1 -1
- package/esm/maths/algebra/logicalset.d.ts +28 -28
- package/esm/maths/algebra/logicalset.js +157 -157
- package/esm/maths/algebra/monom.d.ts +206 -206
- package/esm/maths/algebra/monom.js +908 -908
- package/esm/maths/algebra/monom.js.map +1 -1
- package/esm/maths/algebra/polynom.d.ts +157 -157
- package/esm/maths/algebra/polynom.js +1277 -1277
- package/esm/maths/algebra/rational.d.ts +45 -45
- package/esm/maths/algebra/rational.js +183 -183
- package/esm/maths/algebra/study/rationalStudy.d.ts +28 -28
- package/esm/maths/algebra/study/rationalStudy.js +243 -243
- package/esm/maths/algebra/study.d.ts +142 -142
- package/esm/maths/algebra/study.js +377 -377
- package/esm/maths/algebra/study.js.map +1 -1
- package/esm/maths/coefficients/fraction.d.ts +90 -90
- package/esm/maths/coefficients/fraction.js +516 -516
- package/esm/maths/coefficients/fraction.js.map +1 -1
- package/esm/maths/coefficients/nthRoot.d.ts +23 -23
- package/esm/maths/coefficients/nthRoot.js +136 -136
- package/esm/maths/geometry/circle.d.ts +45 -45
- package/esm/maths/geometry/circle.js +323 -323
- package/esm/maths/geometry/line.d.ts +99 -99
- package/esm/maths/geometry/line.js +481 -481
- package/esm/maths/geometry/line.js.map +1 -1
- package/esm/maths/geometry/point.d.ts +34 -34
- package/esm/maths/geometry/point.js +166 -166
- package/esm/maths/geometry/point.js.map +1 -1
- package/esm/maths/geometry/triangle.d.ts +85 -85
- package/esm/maths/geometry/triangle.js +268 -268
- package/esm/maths/geometry/vector.d.ts +41 -41
- package/esm/maths/geometry/vector.js +197 -197
- package/esm/maths/geometry/vector.js.map +1 -1
- package/esm/maths/numeric.d.ts +28 -28
- package/esm/maths/numeric.js +180 -169
- package/esm/maths/numeric.js.map +1 -1
- package/esm/maths/numexp.d.ts +19 -0
- package/esm/maths/numexp.js +186 -0
- package/esm/maths/numexp.js.map +1 -0
- package/esm/maths/randomization/random.d.ts +23 -23
- package/esm/maths/randomization/random.js +78 -78
- package/esm/maths/randomization/random.js.map +1 -1
- package/esm/maths/randomization/randomCore.d.ts +7 -7
- package/esm/maths/randomization/randomCore.js +21 -21
- package/esm/maths/randomization/rndFraction.d.ts +12 -12
- package/esm/maths/randomization/rndFraction.js +43 -43
- package/esm/maths/randomization/rndGeometryLine.d.ts +12 -12
- package/esm/maths/randomization/rndGeometryLine.js +45 -45
- package/esm/maths/randomization/rndGeometryPoint.d.ts +12 -12
- package/esm/maths/randomization/rndGeometryPoint.js +60 -60
- package/esm/maths/randomization/rndHelpers.d.ts +23 -23
- package/esm/maths/randomization/rndHelpers.js +76 -76
- package/esm/maths/randomization/rndMonom.d.ts +12 -12
- package/esm/maths/randomization/rndMonom.js +52 -52
- package/esm/maths/randomization/rndPolynom.d.ts +13 -13
- package/esm/maths/randomization/rndPolynom.js +74 -74
- package/esm/maths/randomization/rndTypes.d.ts +34 -34
- package/esm/maths/randomization/rndTypes.js +2 -2
- package/esm/maths/shutingyard.d.ts +59 -59
- package/esm/maths/shutingyard.js +442 -442
- package/esm/maths/shutingyard.js.map +1 -1
- package/package.json +11 -11
- package/public/index.html +50 -81
- package/public/playground.html +7 -8
- package/src/index.ts +2 -5
- package/src/maths/algebra/equation.ts +16 -0
- package/src/maths/algebra/linearSystem.ts +20 -0
- package/src/maths/algebra/study.ts +1 -1
- package/src/maths/numeric.ts +49 -48
- package/src/maths/{expressions/numexp.ts → numexp.ts} +2 -2
- package/tests/algebra/equation.test.ts +19 -5
- package/tests/algebra/linear.test.ts +3 -11
- package/tests/algebra/polynom.test.ts +7 -8
- package/tests/algebra/rationnal.test.ts +1 -1
- package/tests/algebra/study.test.ts +2 -9
- package/tests/coefficients/fraction.test.ts +8 -8
- package/tests/custom.test.ts +33 -37
- package/tests/numeric.test.ts +1 -2
- package/tests/numexp.test.ts +1 -5
- package/tests/shutingyard.test.ts +3 -3
- package/webpack-production-min.config.js +1 -1
- package/webpack-production.config.js +1 -1
- package/webpack.config.js +1 -1
- package/dist/pi.js.map +0 -1
- package/dist/pi.min.js +0 -2
- package/dist/pi.min.js.map +0 -1
- package/docs/classes/expressions_numexp.NumExp.html +0 -236
- package/docs/classes/expressions_polynomexp.PolynomExpFactor.html +0 -317
- package/docs/classes/expressions_polynomexp.PolynomExpProduct.html +0 -285
- package/docs/modules/expressions_numexp.html +0 -71
- package/docs/modules/expressions_polynomexp.html +0 -73
- package/docs/modules.html +0 -76
- package/graph.svg +0 -1033
- package/src/maths/expressions/ExpressionTree.ts +0 -172
- package/src/maths/expressions/expression.ts +0 -286
- package/src/maths/expressions/expressionFactor.ts +0 -190
- package/src/maths/expressions/expressionMember.ts +0 -233
- package/src/maths/expressions/expressionOperators.ts +0 -49
- package/src/maths/expressions/expressionParser.ts +0 -295
- package/src/maths/expressions/factors/ExpFactor.ts +0 -39
- package/src/maths/expressions/factors/ExpFactorConstant.ts +0 -60
- package/src/maths/expressions/factors/ExpFactorExponential.ts +0 -26
- package/src/maths/expressions/factors/ExpFactorNumber.ts +0 -72
- package/src/maths/expressions/factors/ExpFactorPower.ts +0 -42
- package/src/maths/expressions/factors/ExpFactorTrigo.ts +0 -53
- package/src/maths/expressions/factors/ExpFactorVariable.ts +0 -45
- package/src/maths/expressions/internals.ts +0 -14
- package/src/maths/expressions/polynomexp.bkp.ts +0 -221
- package/src/maths/expressions/polynomexp.ts +0 -310
- package/tests/expressions/expressions.test.ts +0 -145
- package/tests/expressions/expressiontree.test.ts +0 -11
- package/tests/polynomexp.test.ts +0 -12
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Polynom | pimath</title><meta name="description" content="Documentation for pimath"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.css" integrity="sha384-R4558gYOUz8mP9YWpZJjofhk+zx0AS11p36HnD2ZKj/6JR5z27gSSULCNHIRReVs" crossorigin="anonymous"><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.js" integrity="sha384-z1fJDqw8ZApjGO3/unPWUPsIymfsJmyrDVWC8Tv/a1HeOtGmkwNd/7xUS0Xcnvsx" crossorigin="anonymous"></script><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/contrib/auto-render.min.js" integrity="sha384-+XBljXPPiv+OzfbB3cVmLHf4hdUFHlWNZN5spNQ7rmHTXpd7WvJum6fIACpNNfIR" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script></link>}); }</head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
|
1
|
+
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Polynom | pimath</title><meta name="description" content="Documentation for pimath"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.css" integrity="sha384-R4558gYOUz8mP9YWpZJjofhk+zx0AS11p36HnD2ZKj/6JR5z27gSSULCNHIRReVs" crossorigin="anonymous"><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.js" integrity="sha384-z1fJDqw8ZApjGO3/unPWUPsIymfsJmyrDVWC8Tv/a1HeOtGmkwNd/7xUS0Xcnvsx" crossorigin="anonymous"></script><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/contrib/auto-render.min.js" integrity="sha384-+XBljXPPiv+OzfbB3cVmLHf4hdUFHlWNZN5spNQ7rmHTXpd7WvJum6fIACpNNfIR" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script></link>}); }</head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
|
2
2
|
<div class="tsd-toolbar-contents container">
|
|
3
3
|
<div class="table-cell" id="tsd-search" data-base="..">
|
|
4
4
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
|
@@ -9,24 +9,25 @@
|
|
|
9
9
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">pimath</a></div>
|
|
10
10
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
|
11
11
|
<div class="container container-main">
|
|
12
|
-
<div class="col-
|
|
12
|
+
<div class="col-content">
|
|
13
13
|
<div class="tsd-page-title">
|
|
14
14
|
<ul class="tsd-breadcrumb">
|
|
15
|
-
<li><a href="../
|
|
15
|
+
<li><a href="../index.html">pimath</a></li>
|
|
16
16
|
<li><a href="../modules/algebra_polynom.html">algebra/polynom</a></li>
|
|
17
17
|
<li><a href="algebra_polynom.Polynom.html">Polynom</a></li></ul>
|
|
18
18
|
<h1>Class Polynom</h1></div>
|
|
19
19
|
<section class="tsd-panel tsd-comment">
|
|
20
20
|
<div class="tsd-comment tsd-typography"><p>Polynom class can handle polynoms, reorder, resolve, ...</p>
|
|
21
21
|
<pre><code><span class="hl-0">let</span><span class="hl-1"> </span><span class="hl-2">P</span><span class="hl-1"> = </span><span class="hl-0">new</span><span class="hl-1"> </span><span class="hl-4">Polynom</span><span class="hl-1">(</span><span class="hl-5">'3x-4'</span><span class="hl-1">)</span>
|
|
22
|
-
</code></pre>
|
|
23
|
-
</div
|
|
22
|
+
</code><button>Copy</button></pre>
|
|
23
|
+
</div>
|
|
24
|
+
<div class="tsd-comment tsd-typography"></div></section>
|
|
24
25
|
<section class="tsd-panel tsd-hierarchy">
|
|
25
26
|
<h4>Hierarchy</h4>
|
|
26
27
|
<ul class="tsd-hierarchy">
|
|
27
28
|
<li><span class="target">Polynom</span></li></ul></section><aside class="tsd-sources">
|
|
28
29
|
<ul>
|
|
29
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
30
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L25">algebra/polynom.ts:25</a></li></ul></aside>
|
|
30
31
|
<section class="tsd-panel-group tsd-index-group">
|
|
31
32
|
<section class="tsd-panel tsd-index-panel">
|
|
32
33
|
<details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
|
|
@@ -34,467 +35,471 @@
|
|
|
34
35
|
<div class="tsd-accordion-details">
|
|
35
36
|
<section class="tsd-index-section">
|
|
36
37
|
<h3 class="tsd-index-heading">Constructors</h3>
|
|
37
|
-
<div class="tsd-index-list"><a href="algebra_polynom.Polynom.html#constructor" class="tsd-index-link
|
|
38
|
+
<div class="tsd-index-list"><a href="algebra_polynom.Polynom.html#constructor" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-512"><rect fill="var(--color-icon-background)" stroke="#4D7FFF" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M11.898 16.1201C11.098 16.1201 10.466 15.8961 10.002 15.4481C9.53803 15.0001 9.30603 14.3841 9.30603 13.6001V9.64012C9.30603 8.85612 9.53803 8.24012 10.002 7.79212C10.466 7.34412 11.098 7.12012 11.898 7.12012C12.682 7.12012 13.306 7.34812 13.77 7.80412C14.234 8.25212 14.466 8.86412 14.466 9.64012H13.386C13.386 9.14412 13.254 8.76412 12.99 8.50012C12.734 8.22812 12.37 8.09212 11.898 8.09212C11.426 8.09212 11.054 8.22412 10.782 8.48812C10.518 8.75212 10.386 9.13212 10.386 9.62812V13.6001C10.386 14.0961 10.518 14.4801 10.782 14.7521C11.054 15.0161 11.426 15.1481 11.898 15.1481C12.37 15.1481 12.734 15.0161 12.99 14.7521C13.254 14.4801 13.386 14.0961 13.386 13.6001H14.466C14.466 14.3761 14.234 14.9921 13.77 15.4481C13.306 15.8961 12.682 16.1201 11.898 16.1201Z" fill="var(--color-text)"></path></g></svg><span>constructor</span></a>
|
|
38
39
|
</div></section>
|
|
39
40
|
<section class="tsd-index-section">
|
|
40
41
|
<h3 class="tsd-index-heading">Properties</h3>
|
|
41
|
-
<div class="tsd-index-list"><a href="algebra_polynom.Polynom.html#_dirty_factors" class="tsd-index-link tsd-
|
|
42
|
-
<a href="algebra_polynom.Polynom.html#_dirty_zeroes" class="tsd-index-link tsd-
|
|
43
|
-
<a href="algebra_polynom.Polynom.html#_euclidianCache" class="tsd-index-link tsd-
|
|
44
|
-
<a href="algebra_polynom.Polynom.html#_factors" class="tsd-index-link tsd-
|
|
45
|
-
<a href="algebra_polynom.Polynom.html#_monoms" class="tsd-index-link tsd-
|
|
46
|
-
<a href="algebra_polynom.Polynom.html#_rawString" class="tsd-index-link tsd-
|
|
47
|
-
<a href="algebra_polynom.Polynom.html#_texString" class="tsd-index-link tsd-
|
|
48
|
-
<a href="algebra_polynom.Polynom.html#_zeroes" class="tsd-index-link tsd-
|
|
42
|
+
<div class="tsd-index-list"><a href="algebra_polynom.Polynom.html#_dirty_factors" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-1024"><rect fill="var(--color-icon-background)" stroke="#FF984D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M9.354 16V7.24H12.174C12.99 7.24 13.638 7.476 14.118 7.948C14.606 8.412 14.85 9.036 14.85 9.82C14.85 10.604 14.606 11.232 14.118 11.704C13.638 12.168 12.99 12.4 12.174 12.4H10.434V16H9.354ZM10.434 11.428H12.174C12.646 11.428 13.022 11.284 13.302 10.996C13.59 10.7 13.734 10.308 13.734 9.82C13.734 9.324 13.59 8.932 13.302 8.644C13.022 8.356 12.646 8.212 12.174 8.212H10.434V11.428Z" fill="var(--color-text)"></path></g></svg><span>_dirty_<wbr/>factors</span></a>
|
|
43
|
+
<a href="algebra_polynom.Polynom.html#_dirty_zeroes" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_dirty_<wbr/>zeroes</span></a>
|
|
44
|
+
<a href="algebra_polynom.Polynom.html#_euclidianCache" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_euclidian<wbr/>Cache</span></a>
|
|
45
|
+
<a href="algebra_polynom.Polynom.html#_factors" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_factors</span></a>
|
|
46
|
+
<a href="algebra_polynom.Polynom.html#_monoms" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_monoms</span></a>
|
|
47
|
+
<a href="algebra_polynom.Polynom.html#_rawString" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_raw<wbr/>String</span></a>
|
|
48
|
+
<a href="algebra_polynom.Polynom.html#_texString" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_tex<wbr/>String</span></a>
|
|
49
|
+
<a href="algebra_polynom.Polynom.html#_zeroes" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_zeroes</span></a>
|
|
49
50
|
</div></section>
|
|
50
51
|
<section class="tsd-index-section">
|
|
51
52
|
<h3 class="tsd-index-heading">Accessors</h3>
|
|
52
|
-
<div class="tsd-index-list"><a href="algebra_polynom.Polynom.html#dirty_factors" class="tsd-index-link
|
|
53
|
-
<a href="algebra_polynom.Polynom.html#dirty_zeroes" class="tsd-index-link
|
|
54
|
-
<a href="algebra_polynom.Polynom.html#display" class="tsd-index-link
|
|
55
|
-
<a href="algebra_polynom.Polynom.html#displayFactors" class="tsd-index-link
|
|
56
|
-
<a href="algebra_polynom.Polynom.html#euclidianCache" class="tsd-index-link
|
|
57
|
-
<a href="algebra_polynom.Polynom.html#factors" class="tsd-index-link
|
|
58
|
-
<a href="algebra_polynom.Polynom.html#isMultiVariable" class="tsd-index-link
|
|
59
|
-
<a href="algebra_polynom.Polynom.html#length" class="tsd-index-link
|
|
60
|
-
<a href="algebra_polynom.Polynom.html#monoms" class="tsd-index-link
|
|
61
|
-
<a href="algebra_polynom.Polynom.html#numberOfVars" class="tsd-index-link
|
|
62
|
-
<a href="algebra_polynom.Polynom.html#plotFunction" class="tsd-index-link
|
|
63
|
-
<a href="algebra_polynom.Polynom.html#raw" class="tsd-index-link
|
|
64
|
-
<a href="algebra_polynom.Polynom.html#tex" class="tsd-index-link
|
|
65
|
-
<a href="algebra_polynom.Polynom.html#texFactors" class="tsd-index-link
|
|
66
|
-
<a href="algebra_polynom.Polynom.html#texString" class="tsd-index-link
|
|
67
|
-
<a href="algebra_polynom.Polynom.html#variables" class="tsd-index-link
|
|
68
|
-
<a href="algebra_polynom.Polynom.html#zeroes" class="tsd-index-link
|
|
53
|
+
<div class="tsd-index-list"><a href="algebra_polynom.Polynom.html#dirty_factors" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-262144"><rect fill="var(--color-icon-background)" stroke="#FF4D4D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M8.85 16L11.13 7.24H12.582L14.85 16H13.758L13.182 13.672H10.53L9.954 16H8.85ZM10.746 12.76H12.954L12.282 10.06C12.154 9.548 12.054 9.12 11.982 8.776C11.91 8.432 11.866 8.208 11.85 8.104C11.834 8.208 11.79 8.432 11.718 8.776C11.646 9.12 11.546 9.544 11.418 10.048L10.746 12.76Z" fill="var(--color-text)"></path></g></svg><span>dirty_<wbr/>factors</span></a>
|
|
54
|
+
<a href="algebra_polynom.Polynom.html#dirty_zeroes" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>dirty_<wbr/>zeroes</span></a>
|
|
55
|
+
<a href="algebra_polynom.Polynom.html#display" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>display</span></a>
|
|
56
|
+
<a href="algebra_polynom.Polynom.html#displayFactors" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>display<wbr/>Factors</span></a>
|
|
57
|
+
<a href="algebra_polynom.Polynom.html#euclidianCache" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>euclidian<wbr/>Cache</span></a>
|
|
58
|
+
<a href="algebra_polynom.Polynom.html#factors" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>factors</span></a>
|
|
59
|
+
<a href="algebra_polynom.Polynom.html#isMultiVariable" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>is<wbr/>Multi<wbr/>Variable</span></a>
|
|
60
|
+
<a href="algebra_polynom.Polynom.html#length" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>length</span></a>
|
|
61
|
+
<a href="algebra_polynom.Polynom.html#monoms" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>monoms</span></a>
|
|
62
|
+
<a href="algebra_polynom.Polynom.html#numberOfVars" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>number<wbr/>Of<wbr/>Vars</span></a>
|
|
63
|
+
<a href="algebra_polynom.Polynom.html#plotFunction" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>plot<wbr/>Function</span></a>
|
|
64
|
+
<a href="algebra_polynom.Polynom.html#raw" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>raw</span></a>
|
|
65
|
+
<a href="algebra_polynom.Polynom.html#tex" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>tex</span></a>
|
|
66
|
+
<a href="algebra_polynom.Polynom.html#texFactors" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>tex<wbr/>Factors</span></a>
|
|
67
|
+
<a href="algebra_polynom.Polynom.html#texString" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>tex<wbr/>String</span></a>
|
|
68
|
+
<a href="algebra_polynom.Polynom.html#variables" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>variables</span></a>
|
|
69
|
+
<a href="algebra_polynom.Polynom.html#zeroes" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>zeroes</span></a>
|
|
69
70
|
</div></section>
|
|
70
71
|
<section class="tsd-index-section">
|
|
71
72
|
<h3 class="tsd-index-heading">Methods</h3>
|
|
72
|
-
<div class="tsd-index-list"><a href="algebra_polynom.Polynom.html#_factorize2ndDegree" class="tsd-index-link tsd-
|
|
73
|
-
<a href="algebra_polynom.Polynom.html#_factorizeByGroups" class="tsd-index-link tsd-
|
|
74
|
-
<a href="algebra_polynom.Polynom.html#_getAllPotentialFactors" class="tsd-index-link tsd-
|
|
75
|
-
<a href="algebra_polynom.Polynom.html#_parseString" class="tsd-index-link tsd-
|
|
76
|
-
<a href="algebra_polynom.Polynom.html#add" class="tsd-index-link
|
|
77
|
-
<a href="algebra_polynom.Polynom.html#addToken" class="tsd-index-link
|
|
78
|
-
<a href="algebra_polynom.Polynom.html#clone" class="tsd-index-link
|
|
79
|
-
<a href="algebra_polynom.Polynom.html#commonMonom" class="tsd-index-link
|
|
80
|
-
<a href="algebra_polynom.Polynom.html#compare" class="tsd-index-link
|
|
81
|
-
<a href="algebra_polynom.Polynom.html#degree" class="tsd-index-link
|
|
82
|
-
<a href="algebra_polynom.Polynom.html#derivative" class="tsd-index-link
|
|
83
|
-
<a href="algebra_polynom.Polynom.html#divide" class="tsd-index-link
|
|
84
|
-
<a href="algebra_polynom.Polynom.html#divideByFraction" class="tsd-index-link tsd-
|
|
85
|
-
<a href="algebra_polynom.Polynom.html#divideByInteger" class="tsd-index-link tsd-
|
|
86
|
-
<a href="algebra_polynom.Polynom.html#empty" class="tsd-index-link
|
|
87
|
-
<a href="algebra_polynom.Polynom.html#euclidian" class="tsd-index-link
|
|
88
|
-
<a href="algebra_polynom.Polynom.html#evaluate" class="tsd-index-link
|
|
89
|
-
<a href="algebra_polynom.Polynom.html#evaluateAsNumeric" class="tsd-index-link
|
|
90
|
-
<a href="algebra_polynom.Polynom.html#factorize" class="tsd-index-link
|
|
91
|
-
<a href="algebra_polynom.Polynom.html#gcdDenominator" class="tsd-index-link
|
|
92
|
-
<a href="algebra_polynom.Polynom.html#gcdNumerator" class="tsd-index-link
|
|
93
|
-
<a href="algebra_polynom.Polynom.html#genDisplay" class="tsd-index-link tsd-
|
|
94
|
-
<a href="algebra_polynom.Polynom.html#getDenominators" class="tsd-index-link
|
|
95
|
-
<a href="algebra_polynom.Polynom.html#getNumerators" class="tsd-index-link
|
|
96
|
-
<a href="algebra_polynom.Polynom.html#getZeroes" class="tsd-index-link
|
|
97
|
-
<a href="algebra_polynom.Polynom.html#integrate" class="tsd-index-link
|
|
98
|
-
<a href="algebra_polynom.Polynom.html#isDeveloped" class="tsd-index-link
|
|
99
|
-
<a href="algebra_polynom.Polynom.html#isDividableBy" class="tsd-index-link
|
|
100
|
-
<a href="algebra_polynom.Polynom.html#isEqual" class="tsd-index-link
|
|
101
|
-
<a href="algebra_polynom.Polynom.html#isFactorized" class="tsd-index-link
|
|
102
|
-
<a href="algebra_polynom.Polynom.html#isOne" class="tsd-index-link
|
|
103
|
-
<a href="algebra_polynom.Polynom.html#isOpposedAt" class="tsd-index-link
|
|
104
|
-
<a href="algebra_polynom.Polynom.html#isReduced" class="tsd-index-link
|
|
105
|
-
<a href="algebra_polynom.Polynom.html#isSameAs" class="tsd-index-link
|
|
106
|
-
<a href="algebra_polynom.Polynom.html#isZero" class="tsd-index-link
|
|
107
|
-
<a href="algebra_polynom.Polynom.html#lcmDenominator" class="tsd-index-link
|
|
108
|
-
<a href="algebra_polynom.Polynom.html#lcmNumerator" class="tsd-index-link
|
|
109
|
-
<a href="algebra_polynom.Polynom.html#letters" class="tsd-index-link
|
|
110
|
-
<a href="algebra_polynom.Polynom.html#limitToInfinity" class="tsd-index-link
|
|
111
|
-
<a href="algebra_polynom.Polynom.html#limitToNegativeInfinity" class="tsd-index-link
|
|
112
|
-
<a href="algebra_polynom.Polynom.html#mark_as_dirty" class="tsd-index-link
|
|
113
|
-
<a href="algebra_polynom.Polynom.html#monomByDegree" class="tsd-index-link
|
|
114
|
-
<a href="algebra_polynom.Polynom.html#monomByLetter" class="tsd-index-link
|
|
115
|
-
<a href="algebra_polynom.Polynom.html#monomsByDegree" class="tsd-index-link
|
|
116
|
-
<a href="algebra_polynom.Polynom.html#multiply" class="tsd-index-link
|
|
117
|
-
<a href="algebra_polynom.Polynom.html#multiplyByFraction" class="tsd-index-link tsd-
|
|
118
|
-
<a href="algebra_polynom.Polynom.html#multiplyByInteger" class="tsd-index-link tsd-
|
|
119
|
-
<a href="algebra_polynom.Polynom.html#multiplyByMonom" class="tsd-index-link tsd-
|
|
120
|
-
<a href="algebra_polynom.Polynom.html#multiplyByPolynom" class="tsd-index-link tsd-
|
|
121
|
-
<a href="algebra_polynom.Polynom.html#one" class="tsd-index-link
|
|
122
|
-
<a href="algebra_polynom.Polynom.html#opposed" class="tsd-index-link
|
|
123
|
-
<a href="algebra_polynom.Polynom.html#parse" class="tsd-index-link
|
|
124
|
-
<a href="algebra_polynom.Polynom.html#pow" class="tsd-index-link
|
|
125
|
-
<a href="algebra_polynom.Polynom.html#primitive" class="tsd-index-link
|
|
126
|
-
<a href="algebra_polynom.Polynom.html#reduce" class="tsd-index-link
|
|
127
|
-
<a href="algebra_polynom.Polynom.html#reorder" class="tsd-index-link
|
|
128
|
-
<a href="algebra_polynom.Polynom.html#replaceBy" class="tsd-index-link
|
|
129
|
-
<a href="algebra_polynom.Polynom.html#shutingYardToReducedPolynom" class="tsd-index-link tsd-
|
|
130
|
-
<a href="algebra_polynom.Polynom.html#subtract" class="tsd-index-link
|
|
131
|
-
<a href="algebra_polynom.Polynom.html#zero" class="tsd-index-link
|
|
73
|
+
<div class="tsd-index-list"><a href="algebra_polynom.Polynom.html#_factorize2ndDegree" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-2048"><rect fill="var(--color-icon-background)" stroke="#FF4DB8" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M9.162 16V7.24H10.578L11.514 10.072C11.602 10.328 11.674 10.584 11.73 10.84C11.794 11.088 11.842 11.28 11.874 11.416C11.906 11.28 11.954 11.088 12.018 10.84C12.082 10.584 12.154 10.324 12.234 10.06L13.122 7.24H14.538V16H13.482V12.82C13.482 12.468 13.49 12.068 13.506 11.62C13.53 11.172 13.558 10.716 13.59 10.252C13.622 9.78 13.654 9.332 13.686 8.908C13.726 8.476 13.762 8.1 13.794 7.78L12.366 12.16H11.334L9.894 7.78C9.934 8.092 9.97 8.456 10.002 8.872C10.042 9.28 10.078 9.716 10.11 10.18C10.142 10.636 10.166 11.092 10.182 11.548C10.206 12.004 10.218 12.428 10.218 12.82V16H9.162Z" fill="var(--color-text)"></path></g></svg><span>_factorize2nd<wbr/>Degree</span></a>
|
|
74
|
+
<a href="algebra_polynom.Polynom.html#_factorizeByGroups" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>_factorize<wbr/>By<wbr/>Groups</span></a>
|
|
75
|
+
<a href="algebra_polynom.Polynom.html#_getAllPotentialFactors" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>_get<wbr/>All<wbr/>Potential<wbr/>Factors</span></a>
|
|
76
|
+
<a href="algebra_polynom.Polynom.html#_parseString" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>_parse<wbr/>String</span></a>
|
|
77
|
+
<a href="algebra_polynom.Polynom.html#add" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>add</span></a>
|
|
78
|
+
<a href="algebra_polynom.Polynom.html#addToken" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>add<wbr/>Token</span></a>
|
|
79
|
+
<a href="algebra_polynom.Polynom.html#clone" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>clone</span></a>
|
|
80
|
+
<a href="algebra_polynom.Polynom.html#commonMonom" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>common<wbr/>Monom</span></a>
|
|
81
|
+
<a href="algebra_polynom.Polynom.html#compare" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>compare</span></a>
|
|
82
|
+
<a href="algebra_polynom.Polynom.html#degree" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>degree</span></a>
|
|
83
|
+
<a href="algebra_polynom.Polynom.html#derivative" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>derivative</span></a>
|
|
84
|
+
<a href="algebra_polynom.Polynom.html#divide" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>divide</span></a>
|
|
85
|
+
<a href="algebra_polynom.Polynom.html#divideByFraction" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>divide<wbr/>By<wbr/>Fraction</span></a>
|
|
86
|
+
<a href="algebra_polynom.Polynom.html#divideByInteger" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>divide<wbr/>By<wbr/>Integer</span></a>
|
|
87
|
+
<a href="algebra_polynom.Polynom.html#empty" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>empty</span></a>
|
|
88
|
+
<a href="algebra_polynom.Polynom.html#euclidian" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>euclidian</span></a>
|
|
89
|
+
<a href="algebra_polynom.Polynom.html#evaluate" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>evaluate</span></a>
|
|
90
|
+
<a href="algebra_polynom.Polynom.html#evaluateAsNumeric" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>evaluate<wbr/>As<wbr/>Numeric</span></a>
|
|
91
|
+
<a href="algebra_polynom.Polynom.html#factorize" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>factorize</span></a>
|
|
92
|
+
<a href="algebra_polynom.Polynom.html#gcdDenominator" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>gcd<wbr/>Denominator</span></a>
|
|
93
|
+
<a href="algebra_polynom.Polynom.html#gcdNumerator" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>gcd<wbr/>Numerator</span></a>
|
|
94
|
+
<a href="algebra_polynom.Polynom.html#genDisplay" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>gen<wbr/>Display</span></a>
|
|
95
|
+
<a href="algebra_polynom.Polynom.html#getDenominators" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>get<wbr/>Denominators</span></a>
|
|
96
|
+
<a href="algebra_polynom.Polynom.html#getNumerators" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>get<wbr/>Numerators</span></a>
|
|
97
|
+
<a href="algebra_polynom.Polynom.html#getZeroes" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>get<wbr/>Zeroes</span></a>
|
|
98
|
+
<a href="algebra_polynom.Polynom.html#integrate" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>integrate</span></a>
|
|
99
|
+
<a href="algebra_polynom.Polynom.html#isDeveloped" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Developed</span></a>
|
|
100
|
+
<a href="algebra_polynom.Polynom.html#isDividableBy" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Dividable<wbr/>By</span></a>
|
|
101
|
+
<a href="algebra_polynom.Polynom.html#isEqual" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Equal</span></a>
|
|
102
|
+
<a href="algebra_polynom.Polynom.html#isFactorized" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Factorized</span></a>
|
|
103
|
+
<a href="algebra_polynom.Polynom.html#isOne" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>One</span></a>
|
|
104
|
+
<a href="algebra_polynom.Polynom.html#isOpposedAt" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Opposed<wbr/>At</span></a>
|
|
105
|
+
<a href="algebra_polynom.Polynom.html#isReduced" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Reduced</span></a>
|
|
106
|
+
<a href="algebra_polynom.Polynom.html#isSameAs" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Same<wbr/>As</span></a>
|
|
107
|
+
<a href="algebra_polynom.Polynom.html#isZero" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Zero</span></a>
|
|
108
|
+
<a href="algebra_polynom.Polynom.html#lcmDenominator" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>lcm<wbr/>Denominator</span></a>
|
|
109
|
+
<a href="algebra_polynom.Polynom.html#lcmNumerator" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>lcm<wbr/>Numerator</span></a>
|
|
110
|
+
<a href="algebra_polynom.Polynom.html#letters" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>letters</span></a>
|
|
111
|
+
<a href="algebra_polynom.Polynom.html#limitToInfinity" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>limit<wbr/>To<wbr/>Infinity</span></a>
|
|
112
|
+
<a href="algebra_polynom.Polynom.html#limitToNegativeInfinity" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>limit<wbr/>To<wbr/>Negative<wbr/>Infinity</span></a>
|
|
113
|
+
<a href="algebra_polynom.Polynom.html#mark_as_dirty" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>mark_<wbr/>as_<wbr/>dirty</span></a>
|
|
114
|
+
<a href="algebra_polynom.Polynom.html#monomByDegree" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>monom<wbr/>By<wbr/>Degree</span></a>
|
|
115
|
+
<a href="algebra_polynom.Polynom.html#monomByLetter" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>monom<wbr/>By<wbr/>Letter</span></a>
|
|
116
|
+
<a href="algebra_polynom.Polynom.html#monomsByDegree" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>monoms<wbr/>By<wbr/>Degree</span></a>
|
|
117
|
+
<a href="algebra_polynom.Polynom.html#multiply" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>multiply</span></a>
|
|
118
|
+
<a href="algebra_polynom.Polynom.html#multiplyByFraction" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>multiply<wbr/>By<wbr/>Fraction</span></a>
|
|
119
|
+
<a href="algebra_polynom.Polynom.html#multiplyByInteger" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>multiply<wbr/>By<wbr/>Integer</span></a>
|
|
120
|
+
<a href="algebra_polynom.Polynom.html#multiplyByMonom" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>multiply<wbr/>By<wbr/>Monom</span></a>
|
|
121
|
+
<a href="algebra_polynom.Polynom.html#multiplyByPolynom" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>multiply<wbr/>By<wbr/>Polynom</span></a>
|
|
122
|
+
<a href="algebra_polynom.Polynom.html#one" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>one</span></a>
|
|
123
|
+
<a href="algebra_polynom.Polynom.html#opposed" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>opposed</span></a>
|
|
124
|
+
<a href="algebra_polynom.Polynom.html#parse" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>parse</span></a>
|
|
125
|
+
<a href="algebra_polynom.Polynom.html#pow" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>pow</span></a>
|
|
126
|
+
<a href="algebra_polynom.Polynom.html#primitive" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>primitive</span></a>
|
|
127
|
+
<a href="algebra_polynom.Polynom.html#reduce" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>reduce</span></a>
|
|
128
|
+
<a href="algebra_polynom.Polynom.html#reorder" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>reorder</span></a>
|
|
129
|
+
<a href="algebra_polynom.Polynom.html#replaceBy" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>replace<wbr/>By</span></a>
|
|
130
|
+
<a href="algebra_polynom.Polynom.html#shutingYardToReducedPolynom" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>shuting<wbr/>Yard<wbr/>To<wbr/>Reduced<wbr/>Polynom</span></a>
|
|
131
|
+
<a href="algebra_polynom.Polynom.html#subtract" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>subtract</span></a>
|
|
132
|
+
<a href="algebra_polynom.Polynom.html#zero" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>zero</span></a>
|
|
132
133
|
</div></section></div></details></section></section>
|
|
133
134
|
<section class="tsd-panel-group tsd-member-group">
|
|
134
135
|
<h2>Constructors</h2>
|
|
135
|
-
<section class="tsd-panel tsd-member
|
|
136
|
-
<h3 class="tsd-anchor-link"><span>constructor</span><a href="#constructor" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
137
|
-
<ul class="tsd-signatures
|
|
138
|
-
<li class="tsd-signature tsd-anchor-link" id="constructor.new_Polynom"
|
|
136
|
+
<section class="tsd-panel tsd-member"><a id="constructor" class="tsd-anchor"></a>
|
|
137
|
+
<h3 class="tsd-anchor-link"><span>constructor</span><a href="#constructor" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><g stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round" id="icon-anchor"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></g></svg></a></h3>
|
|
138
|
+
<ul class="tsd-signatures">
|
|
139
|
+
<li class="tsd-signature tsd-anchor-link" id="constructor.new_Polynom"><span class="tsd-kind-constructor-signature">new <wbr/>Polynom</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">polynomString</span><span class="tsd-signature-symbol">?</span>, <span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">values</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#constructor.new_Polynom" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
139
140
|
<li class="tsd-description">
|
|
140
141
|
<div class="tsd-parameters">
|
|
141
142
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
142
143
|
<ul class="tsd-parameter-list">
|
|
143
144
|
<li>
|
|
144
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> polynomString
|
|
145
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">polynomString</span>: <a href="../types/algebra_polynom.PolynomParsingType.html" class="tsd-signature-type tsd-kind-type-alias">PolynomParsingType</a></h5>
|
|
145
146
|
<div class="tsd-comment tsd-typography"><p>(optional) Default polynom to parse on class creation</p>
|
|
146
|
-
</div
|
|
147
|
+
</div>
|
|
148
|
+
<div class="tsd-comment tsd-typography"></div></li>
|
|
147
149
|
<li>
|
|
148
|
-
<h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span>values
|
|
149
|
-
<
|
|
150
|
+
<h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">values</span>: <span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">[]</span></h5>
|
|
151
|
+
<div class="tsd-comment tsd-typography"></div></li></ul></div>
|
|
152
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4>
|
|
153
|
+
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
150
154
|
<ul>
|
|
151
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
155
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L40">algebra/polynom.ts:40</a></li></ul></aside></li></ul></section></section>
|
|
152
156
|
<section class="tsd-panel-group tsd-member-group">
|
|
153
157
|
<h2>Properties</h2>
|
|
154
|
-
<section class="tsd-panel tsd-member tsd-
|
|
155
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_dirty_<wbr/>factors</span><a href="#_dirty_factors" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
156
|
-
<div class="tsd-signature">_dirty_<wbr/>factors
|
|
157
|
-
<ul>
|
|
158
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
159
|
-
<section class="tsd-panel tsd-member tsd-
|
|
160
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_dirty_<wbr/>zeroes</span><a href="#_dirty_zeroes" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
161
|
-
<div class="tsd-signature">_dirty_<wbr/>zeroes
|
|
162
|
-
<ul>
|
|
163
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
164
|
-
<section class="tsd-panel tsd-member tsd-
|
|
165
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_euclidian<wbr/>Cache</span><a href="#_euclidianCache" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
166
|
-
<div class="tsd-signature">_euclidian<wbr/>Cache
|
|
158
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_dirty_factors" class="tsd-anchor"></a>
|
|
159
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_dirty_<wbr/>factors</span><a href="#_dirty_factors" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
160
|
+
<div class="tsd-signature"><span class="tsd-kind-property">_dirty_<wbr/>factors</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><aside class="tsd-sources">
|
|
161
|
+
<ul>
|
|
162
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L26">algebra/polynom.ts:26</a></li></ul></aside></section>
|
|
163
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_dirty_zeroes" class="tsd-anchor"></a>
|
|
164
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_dirty_<wbr/>zeroes</span><a href="#_dirty_zeroes" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
165
|
+
<div class="tsd-signature"><span class="tsd-kind-property">_dirty_<wbr/>zeroes</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><aside class="tsd-sources">
|
|
166
|
+
<ul>
|
|
167
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L27">algebra/polynom.ts:27</a></li></ul></aside></section>
|
|
168
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_euclidianCache" class="tsd-anchor"></a>
|
|
169
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_euclidian<wbr/>Cache</span><a href="#_euclidianCache" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
170
|
+
<div class="tsd-signature"><span class="tsd-kind-property">_euclidian<wbr/>Cache</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{ </span><br/><span> </span>[<span class="tsd-kind-index-signature">Key</span>: <span class="tsd-signature-type">string</span>]<span class="tsd-signature-symbol">: </span><a href="../interfaces/algebra_polynom.IEuclidian.html" class="tsd-signature-type tsd-kind-interface">IEuclidian</a><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></div>
|
|
167
171
|
<div class="tsd-type-declaration">
|
|
168
172
|
<h4>Type declaration</h4>
|
|
169
173
|
<ul class="tsd-parameters">
|
|
170
174
|
<li class="tsd-parameter-index-signature">
|
|
171
|
-
<h5><span class="tsd-signature-symbol">[</span>Key
|
|
172
|
-
<ul>
|
|
173
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
174
|
-
<section class="tsd-panel tsd-member tsd-
|
|
175
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_factors</span><a href="#_factors" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
176
|
-
<div class="tsd-signature">_factors
|
|
177
|
-
<ul>
|
|
178
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
179
|
-
<section class="tsd-panel tsd-member tsd-
|
|
180
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_monoms</span><a href="#_monoms" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
181
|
-
<div class="tsd-signature">_monoms
|
|
182
|
-
<ul>
|
|
183
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
184
|
-
<section class="tsd-panel tsd-member tsd-
|
|
185
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_raw<wbr/>String</span><a href="#_rawString" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
186
|
-
<div class="tsd-signature">_raw<wbr/>String
|
|
187
|
-
<ul>
|
|
188
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
189
|
-
<section class="tsd-panel tsd-member tsd-
|
|
190
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_tex<wbr/>String</span><a href="#_texString" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
191
|
-
<div class="tsd-signature">_tex<wbr/>String
|
|
192
|
-
<ul>
|
|
193
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
194
|
-
<section class="tsd-panel tsd-member tsd-
|
|
195
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_zeroes</span><a href="#_zeroes" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
196
|
-
<div class="tsd-signature">_zeroes
|
|
197
|
-
<ul>
|
|
198
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
175
|
+
<h5><span class="tsd-signature-symbol">[</span><span class="tsd-kind-parameter">Key</span>: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">]: </span><a href="../interfaces/algebra_polynom.IEuclidian.html" class="tsd-signature-type tsd-kind-interface">IEuclidian</a></h5></li></ul></div><aside class="tsd-sources">
|
|
176
|
+
<ul>
|
|
177
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L28">algebra/polynom.ts:28</a></li></ul></aside></section>
|
|
178
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_factors" class="tsd-anchor"></a>
|
|
179
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_factors</span><a href="#_factors" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
180
|
+
<div class="tsd-signature"><span class="tsd-kind-property">_factors</span><span class="tsd-signature-symbol">:</span> <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources">
|
|
181
|
+
<ul>
|
|
182
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L29">algebra/polynom.ts:29</a></li></ul></aside></section>
|
|
183
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_monoms" class="tsd-anchor"></a>
|
|
184
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_monoms</span><a href="#_monoms" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
185
|
+
<div class="tsd-signature"><span class="tsd-kind-property">_monoms</span><span class="tsd-signature-symbol">:</span> <a href="algebra_monom.Monom.html" class="tsd-signature-type tsd-kind-class">Monom</a><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources">
|
|
186
|
+
<ul>
|
|
187
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L30">algebra/polynom.ts:30</a></li></ul></aside></section>
|
|
188
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_rawString" class="tsd-anchor"></a>
|
|
189
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_raw<wbr/>String</span><a href="#_rawString" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
190
|
+
<div class="tsd-signature"><span class="tsd-kind-property">_raw<wbr/>String</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
|
|
191
|
+
<ul>
|
|
192
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L31">algebra/polynom.ts:31</a></li></ul></aside></section>
|
|
193
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_texString" class="tsd-anchor"></a>
|
|
194
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_tex<wbr/>String</span><a href="#_texString" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
195
|
+
<div class="tsd-signature"><span class="tsd-kind-property">_tex<wbr/>String</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
|
|
196
|
+
<ul>
|
|
197
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L32">algebra/polynom.ts:32</a></li></ul></aside></section>
|
|
198
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_zeroes" class="tsd-anchor"></a>
|
|
199
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_zeroes</span><a href="#_zeroes" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
200
|
+
<div class="tsd-signature"><span class="tsd-kind-property">_zeroes</span><span class="tsd-signature-symbol">:</span> <a href="../interfaces/algebra_equation.ISolution.html" class="tsd-signature-type tsd-kind-interface">ISolution</a><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources">
|
|
201
|
+
<ul>
|
|
202
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L33">algebra/polynom.ts:33</a></li></ul></aside></section></section>
|
|
199
203
|
<section class="tsd-panel-group tsd-member-group">
|
|
200
204
|
<h2>Accessors</h2>
|
|
201
|
-
<section class="tsd-panel tsd-member
|
|
202
|
-
<h3 class="tsd-anchor-link"><span>dirty_<wbr/>factors</span><a href="#dirty_factors" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
203
|
-
<ul class="tsd-signatures
|
|
205
|
+
<section class="tsd-panel tsd-member"><a id="dirty_factors" class="tsd-anchor"></a>
|
|
206
|
+
<h3 class="tsd-anchor-link"><span>dirty_<wbr/>factors</span><a href="#dirty_factors" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
207
|
+
<ul class="tsd-signatures">
|
|
204
208
|
<li class="tsd-signature" id="dirty_factors.dirty_factors-1"><span class="tsd-signature-symbol">get</span> dirty_factors<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
|
205
209
|
<li class="tsd-description">
|
|
206
210
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
207
211
|
<ul>
|
|
208
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
209
|
-
<li class="tsd-signature" id="dirty_factors.dirty_factors-2"><span class="tsd-signature-symbol">set</span> dirty_factors<span class="tsd-signature-symbol">(</span
|
|
212
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L68">algebra/polynom.ts:68</a></li></ul></aside></li>
|
|
213
|
+
<li class="tsd-signature" id="dirty_factors.dirty_factors-2"><span class="tsd-signature-symbol">set</span> dirty_factors<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">value</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
|
210
214
|
<li class="tsd-description">
|
|
211
215
|
<div class="tsd-parameters">
|
|
212
216
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
213
217
|
<ul class="tsd-parameter-list">
|
|
214
218
|
<li>
|
|
215
|
-
<h5>value
|
|
219
|
+
<h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type">boolean</span></h5></li></ul></div>
|
|
216
220
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
217
221
|
<ul>
|
|
218
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
219
|
-
<section class="tsd-panel tsd-member
|
|
220
|
-
<h3 class="tsd-anchor-link"><span>dirty_<wbr/>zeroes</span><a href="#dirty_zeroes" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
221
|
-
<ul class="tsd-signatures
|
|
222
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L72">algebra/polynom.ts:72</a></li></ul></aside></li></ul></section>
|
|
223
|
+
<section class="tsd-panel tsd-member"><a id="dirty_zeroes" class="tsd-anchor"></a>
|
|
224
|
+
<h3 class="tsd-anchor-link"><span>dirty_<wbr/>zeroes</span><a href="#dirty_zeroes" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
225
|
+
<ul class="tsd-signatures">
|
|
222
226
|
<li class="tsd-signature" id="dirty_zeroes.dirty_zeroes-1"><span class="tsd-signature-symbol">get</span> dirty_zeroes<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
|
223
227
|
<li class="tsd-description">
|
|
224
228
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
225
229
|
<ul>
|
|
226
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
227
|
-
<li class="tsd-signature" id="dirty_zeroes.dirty_zeroes-2"><span class="tsd-signature-symbol">set</span> dirty_zeroes<span class="tsd-signature-symbol">(</span
|
|
230
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L59">algebra/polynom.ts:59</a></li></ul></aside></li>
|
|
231
|
+
<li class="tsd-signature" id="dirty_zeroes.dirty_zeroes-2"><span class="tsd-signature-symbol">set</span> dirty_zeroes<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">value</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
|
228
232
|
<li class="tsd-description">
|
|
229
233
|
<div class="tsd-parameters">
|
|
230
234
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
231
235
|
<ul class="tsd-parameter-list">
|
|
232
236
|
<li>
|
|
233
|
-
<h5>value
|
|
237
|
+
<h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type">boolean</span></h5></li></ul></div>
|
|
234
238
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
235
239
|
<ul>
|
|
236
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
237
|
-
<section class="tsd-panel tsd-member
|
|
238
|
-
<h3 class="tsd-anchor-link"><span>display</span><a href="#display" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
239
|
-
<ul class="tsd-signatures
|
|
240
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L63">algebra/polynom.ts:63</a></li></ul></aside></li></ul></section>
|
|
241
|
+
<section class="tsd-panel tsd-member"><a id="display" class="tsd-anchor"></a>
|
|
242
|
+
<h3 class="tsd-anchor-link"><span>display</span><a href="#display" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
243
|
+
<ul class="tsd-signatures">
|
|
240
244
|
<li class="tsd-signature" id="display.display-1"><span class="tsd-signature-symbol">get</span> display<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
|
241
245
|
<li class="tsd-description">
|
|
242
246
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
243
247
|
<ul>
|
|
244
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
245
|
-
<section class="tsd-panel tsd-member
|
|
246
|
-
<h3 class="tsd-anchor-link"><span>display<wbr/>Factors</span><a href="#displayFactors" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
247
|
-
<ul class="tsd-signatures
|
|
248
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L185">algebra/polynom.ts:185</a></li></ul></aside></li></ul></section>
|
|
249
|
+
<section class="tsd-panel tsd-member"><a id="displayFactors" class="tsd-anchor"></a>
|
|
250
|
+
<h3 class="tsd-anchor-link"><span>display<wbr/>Factors</span><a href="#displayFactors" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
251
|
+
<ul class="tsd-signatures">
|
|
248
252
|
<li class="tsd-signature" id="displayFactors.displayFactors-1"><span class="tsd-signature-symbol">get</span> displayFactors<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
|
249
253
|
<li class="tsd-description">
|
|
250
254
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
251
255
|
<ul>
|
|
252
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
253
|
-
<section class="tsd-panel tsd-member
|
|
254
|
-
<h3 class="tsd-anchor-link"><span>euclidian<wbr/>Cache</span><a href="#euclidianCache" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
255
|
-
<ul class="tsd-signatures
|
|
256
|
-
<li class="tsd-signature" id="euclidianCache.euclidianCache-1"><span class="tsd-signature-symbol">get</span> euclidianCache<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">{ </span><br/><span> </span>[p
|
|
256
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L141">algebra/polynom.ts:141</a></li></ul></aside></li></ul></section>
|
|
257
|
+
<section class="tsd-panel tsd-member"><a id="euclidianCache" class="tsd-anchor"></a>
|
|
258
|
+
<h3 class="tsd-anchor-link"><span>euclidian<wbr/>Cache</span><a href="#euclidianCache" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
259
|
+
<ul class="tsd-signatures">
|
|
260
|
+
<li class="tsd-signature" id="euclidianCache.euclidianCache-1"><span class="tsd-signature-symbol">get</span> euclidianCache<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">{ </span><br/><span> </span>[<span class="tsd-kind-index-signature">p</span>: <span class="tsd-signature-type">string</span>]<span class="tsd-signature-symbol">: </span><a href="../interfaces/algebra_polynom.IEuclidian.html" class="tsd-signature-type tsd-kind-interface">IEuclidian</a><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></li>
|
|
257
261
|
<li class="tsd-description">
|
|
258
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">{ </span><br/><span> </span>[p
|
|
262
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">{ </span><br/><span> </span>[<span class="tsd-kind-index-signature">p</span>: <span class="tsd-signature-type">string</span>]<span class="tsd-signature-symbol">: </span><a href="../interfaces/algebra_polynom.IEuclidian.html" class="tsd-signature-type tsd-kind-interface">IEuclidian</a><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></h4>
|
|
259
263
|
<ul class="tsd-parameters">
|
|
260
264
|
<li class="tsd-parameter-index-signature">
|
|
261
|
-
<h5><span class="tsd-signature-symbol">[</span>p
|
|
265
|
+
<h5><span class="tsd-signature-symbol">[</span><span class="tsd-kind-parameter">p</span>: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">]: </span><a href="../interfaces/algebra_polynom.IEuclidian.html" class="tsd-signature-type tsd-kind-interface">IEuclidian</a></h5></li></ul><aside class="tsd-sources">
|
|
262
266
|
<ul>
|
|
263
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
264
|
-
<li class="tsd-signature" id="euclidianCache.euclidianCache-2"><span class="tsd-signature-symbol">set</span> euclidianCache<span class="tsd-signature-symbol">(</span
|
|
267
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L51">algebra/polynom.ts:51</a></li></ul></aside></li>
|
|
268
|
+
<li class="tsd-signature" id="euclidianCache.euclidianCache-2"><span class="tsd-signature-symbol">set</span> euclidianCache<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">value</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
|
265
269
|
<li class="tsd-description">
|
|
266
270
|
<div class="tsd-parameters">
|
|
267
271
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
268
272
|
<ul class="tsd-parameter-list">
|
|
269
273
|
<li>
|
|
270
|
-
<h5>value
|
|
274
|
+
<h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-symbol">{ </span><br/><span> </span>[<span class="tsd-kind-index-signature">p</span>: <span class="tsd-signature-type">string</span>]<span class="tsd-signature-symbol">: </span><a href="../interfaces/algebra_polynom.IEuclidian.html" class="tsd-signature-type tsd-kind-interface">IEuclidian</a><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></h5>
|
|
271
275
|
<ul class="tsd-parameters">
|
|
272
276
|
<li class="tsd-parameter-index-signature">
|
|
273
|
-
<h5><span class="tsd-signature-symbol">[</span>p
|
|
277
|
+
<h5><span class="tsd-signature-symbol">[</span><span class="tsd-kind-parameter">p</span>: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">]: </span><a href="../interfaces/algebra_polynom.IEuclidian.html" class="tsd-signature-type tsd-kind-interface">IEuclidian</a></h5></li></ul></li></ul></div>
|
|
274
278
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
275
279
|
<ul>
|
|
276
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
277
|
-
<section class="tsd-panel tsd-member
|
|
278
|
-
<h3 class="tsd-anchor-link"><span>factors</span><a href="#factors" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
279
|
-
<ul class="tsd-signatures
|
|
280
|
-
<li class="tsd-signature" id="factors.factors-1"><span class="tsd-signature-symbol">get</span> factors<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
280
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L55">algebra/polynom.ts:55</a></li></ul></aside></li></ul></section>
|
|
281
|
+
<section class="tsd-panel tsd-member"><a id="factors" class="tsd-anchor"></a>
|
|
282
|
+
<h3 class="tsd-anchor-link"><span>factors</span><a href="#factors" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
283
|
+
<ul class="tsd-signatures">
|
|
284
|
+
<li class="tsd-signature" id="factors.factors-1"><span class="tsd-signature-symbol">get</span> factors<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><span class="tsd-signature-symbol">[]</span></li>
|
|
281
285
|
<li class="tsd-description">
|
|
282
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
286
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
|
283
287
|
<ul>
|
|
284
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
285
|
-
<li class="tsd-signature" id="factors.factors-2"><span class="tsd-signature-symbol">set</span> factors<span class="tsd-signature-symbol">(</span
|
|
288
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L89">algebra/polynom.ts:89</a></li></ul></aside></li>
|
|
289
|
+
<li class="tsd-signature" id="factors.factors-2"><span class="tsd-signature-symbol">set</span> factors<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">value</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
|
286
290
|
<li class="tsd-description">
|
|
287
291
|
<div class="tsd-parameters">
|
|
288
292
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
289
293
|
<ul class="tsd-parameter-list">
|
|
290
294
|
<li>
|
|
291
|
-
<h5>value
|
|
295
|
+
<h5><span class="tsd-kind-parameter">value</span>: <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
|
|
292
296
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
293
297
|
<ul>
|
|
294
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
295
|
-
<section class="tsd-panel tsd-member
|
|
296
|
-
<h3 class="tsd-anchor-link"><span>is<wbr/>Multi<wbr/>Variable</span><a href="#isMultiVariable" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
297
|
-
<ul class="tsd-signatures
|
|
298
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L93">algebra/polynom.ts:93</a></li></ul></aside></li></ul></section>
|
|
299
|
+
<section class="tsd-panel tsd-member"><a id="isMultiVariable" class="tsd-anchor"></a>
|
|
300
|
+
<h3 class="tsd-anchor-link"><span>is<wbr/>Multi<wbr/>Variable</span><a href="#isMultiVariable" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
301
|
+
<ul class="tsd-signatures">
|
|
298
302
|
<li class="tsd-signature" id="isMultiVariable.isMultiVariable-1"><span class="tsd-signature-symbol">get</span> isMultiVariable<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
|
299
303
|
<li class="tsd-description">
|
|
300
304
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
301
305
|
<ul>
|
|
302
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
303
|
-
<section class="tsd-panel tsd-member
|
|
304
|
-
<h3 class="tsd-anchor-link"><span>length</span><a href="#length" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
305
|
-
<ul class="tsd-signatures
|
|
306
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L197">algebra/polynom.ts:197</a></li></ul></aside></li></ul></section>
|
|
307
|
+
<section class="tsd-panel tsd-member"><a id="length" class="tsd-anchor"></a>
|
|
308
|
+
<h3 class="tsd-anchor-link"><span>length</span><a href="#length" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
309
|
+
<ul class="tsd-signatures">
|
|
306
310
|
<li class="tsd-signature" id="length.length-1"><span class="tsd-signature-symbol">get</span> length<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span></li>
|
|
307
311
|
<li class="tsd-description">
|
|
308
312
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
|
|
309
313
|
<ul>
|
|
310
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
311
|
-
<section class="tsd-panel tsd-member
|
|
312
|
-
<h3 class="tsd-anchor-link"><span>monoms</span><a href="#monoms" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
313
|
-
<ul class="tsd-signatures
|
|
314
|
-
<li class="tsd-signature" id="monoms.monoms-1"><span class="tsd-signature-symbol">get</span> monoms<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_monom.Monom.html" class="tsd-signature-type
|
|
314
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L180">algebra/polynom.ts:180</a></li></ul></aside></li></ul></section>
|
|
315
|
+
<section class="tsd-panel tsd-member"><a id="monoms" class="tsd-anchor"></a>
|
|
316
|
+
<h3 class="tsd-anchor-link"><span>monoms</span><a href="#monoms" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
317
|
+
<ul class="tsd-signatures">
|
|
318
|
+
<li class="tsd-signature" id="monoms.monoms-1"><span class="tsd-signature-symbol">get</span> monoms<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_monom.Monom.html" class="tsd-signature-type tsd-kind-class">Monom</a><span class="tsd-signature-symbol">[]</span></li>
|
|
315
319
|
<li class="tsd-description">
|
|
316
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_monom.Monom.html" class="tsd-signature-type
|
|
320
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_monom.Monom.html" class="tsd-signature-type tsd-kind-class">Monom</a><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
|
317
321
|
<ul>
|
|
318
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
319
|
-
<li class="tsd-signature" id="monoms.monoms-2"><span class="tsd-signature-symbol">set</span> monoms<span class="tsd-signature-symbol">(</span
|
|
322
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L77">algebra/polynom.ts:77</a></li></ul></aside></li>
|
|
323
|
+
<li class="tsd-signature" id="monoms.monoms-2"><span class="tsd-signature-symbol">set</span> monoms<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">M</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
|
320
324
|
<li class="tsd-description">
|
|
321
325
|
<div class="tsd-parameters">
|
|
322
326
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
323
327
|
<ul class="tsd-parameter-list">
|
|
324
328
|
<li>
|
|
325
|
-
<h5>M
|
|
329
|
+
<h5><span class="tsd-kind-parameter">M</span>: <a href="algebra_monom.Monom.html" class="tsd-signature-type tsd-kind-class">Monom</a><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
|
|
326
330
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
327
331
|
<ul>
|
|
328
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
329
|
-
<section class="tsd-panel tsd-member
|
|
330
|
-
<h3 class="tsd-anchor-link"><span>number<wbr/>Of<wbr/>Vars</span><a href="#numberOfVars" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
331
|
-
<ul class="tsd-signatures
|
|
332
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L81">algebra/polynom.ts:81</a></li></ul></aside></li></ul></section>
|
|
333
|
+
<section class="tsd-panel tsd-member"><a id="numberOfVars" class="tsd-anchor"></a>
|
|
334
|
+
<h3 class="tsd-anchor-link"><span>number<wbr/>Of<wbr/>Vars</span><a href="#numberOfVars" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
335
|
+
<ul class="tsd-signatures">
|
|
332
336
|
<li class="tsd-signature" id="numberOfVars.numberOfVars-1"><span class="tsd-signature-symbol">get</span> numberOfVars<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span></li>
|
|
333
337
|
<li class="tsd-description">
|
|
334
338
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
|
|
335
339
|
<ul>
|
|
336
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
337
|
-
<section class="tsd-panel tsd-member
|
|
338
|
-
<h3 class="tsd-anchor-link"><span>plot<wbr/>Function</span><a href="#plotFunction" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
339
|
-
<ul class="tsd-signatures
|
|
340
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L220">algebra/polynom.ts:220</a></li></ul></aside></li></ul></section>
|
|
341
|
+
<section class="tsd-panel tsd-member"><a id="plotFunction" class="tsd-anchor"></a>
|
|
342
|
+
<h3 class="tsd-anchor-link"><span>plot<wbr/>Function</span><a href="#plotFunction" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
343
|
+
<ul class="tsd-signatures">
|
|
340
344
|
<li class="tsd-signature" id="plotFunction.plotFunction-1"><span class="tsd-signature-symbol">get</span> plotFunction<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
|
341
345
|
<li class="tsd-description">
|
|
342
346
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
343
347
|
<ul>
|
|
344
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
345
|
-
<section class="tsd-panel tsd-member
|
|
346
|
-
<h3 class="tsd-anchor-link"><span>raw</span><a href="#raw" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
347
|
-
<ul class="tsd-signatures
|
|
348
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L224">algebra/polynom.ts:224</a></li></ul></aside></li></ul></section>
|
|
349
|
+
<section class="tsd-panel tsd-member"><a id="raw" class="tsd-anchor"></a>
|
|
350
|
+
<h3 class="tsd-anchor-link"><span>raw</span><a href="#raw" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
351
|
+
<ul class="tsd-signatures">
|
|
348
352
|
<li class="tsd-signature" id="raw.raw-1"><span class="tsd-signature-symbol">get</span> raw<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
|
349
353
|
<li class="tsd-description">
|
|
350
354
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
351
355
|
<ul>
|
|
352
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
353
|
-
<section class="tsd-panel tsd-member
|
|
354
|
-
<h3 class="tsd-anchor-link"><span>tex</span><a href="#tex" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
355
|
-
<ul class="tsd-signatures
|
|
356
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L189">algebra/polynom.ts:189</a></li></ul></aside></li></ul></section>
|
|
357
|
+
<section class="tsd-panel tsd-member"><a id="tex" class="tsd-anchor"></a>
|
|
358
|
+
<h3 class="tsd-anchor-link"><span>tex</span><a href="#tex" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
359
|
+
<ul class="tsd-signatures">
|
|
356
360
|
<li class="tsd-signature" id="tex.tex-1"><span class="tsd-signature-symbol">get</span> tex<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
|
357
361
|
<li class="tsd-description">
|
|
358
362
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
359
363
|
<ul>
|
|
360
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
361
|
-
<section class="tsd-panel tsd-member
|
|
362
|
-
<h3 class="tsd-anchor-link"><span>tex<wbr/>Factors</span><a href="#texFactors" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
363
|
-
<ul class="tsd-signatures
|
|
364
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L193">algebra/polynom.ts:193</a></li></ul></aside></li></ul></section>
|
|
365
|
+
<section class="tsd-panel tsd-member"><a id="texFactors" class="tsd-anchor"></a>
|
|
366
|
+
<h3 class="tsd-anchor-link"><span>tex<wbr/>Factors</span><a href="#texFactors" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
367
|
+
<ul class="tsd-signatures">
|
|
364
368
|
<li class="tsd-signature" id="texFactors.texFactors-1"><span class="tsd-signature-symbol">get</span> texFactors<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
|
365
369
|
<li class="tsd-description">
|
|
366
370
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
367
371
|
<ul>
|
|
368
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
369
|
-
<section class="tsd-panel tsd-member
|
|
370
|
-
<h3 class="tsd-anchor-link"><span>tex<wbr/>String</span><a href="#texString" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
371
|
-
<ul class="tsd-signatures
|
|
372
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L102">algebra/polynom.ts:102</a></li></ul></aside></li></ul></section>
|
|
373
|
+
<section class="tsd-panel tsd-member"><a id="texString" class="tsd-anchor"></a>
|
|
374
|
+
<h3 class="tsd-anchor-link"><span>tex<wbr/>String</span><a href="#texString" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
375
|
+
<ul class="tsd-signatures">
|
|
372
376
|
<li class="tsd-signature" id="texString.texString-1"><span class="tsd-signature-symbol">get</span> texString<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
|
373
377
|
<li class="tsd-description">
|
|
374
378
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
375
379
|
<ul>
|
|
376
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
377
|
-
<section class="tsd-panel tsd-member
|
|
378
|
-
<h3 class="tsd-anchor-link"><span>variables</span><a href="#variables" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
379
|
-
<ul class="tsd-signatures
|
|
380
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L98">algebra/polynom.ts:98</a></li></ul></aside></li></ul></section>
|
|
381
|
+
<section class="tsd-panel tsd-member"><a id="variables" class="tsd-anchor"></a>
|
|
382
|
+
<h3 class="tsd-anchor-link"><span>variables</span><a href="#variables" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
383
|
+
<ul class="tsd-signatures">
|
|
380
384
|
<li class="tsd-signature" id="variables.variables-1"><span class="tsd-signature-symbol">get</span> variables<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></li>
|
|
381
385
|
<li class="tsd-description">
|
|
382
386
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
|
383
387
|
<ul>
|
|
384
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
385
|
-
<section class="tsd-panel tsd-member
|
|
386
|
-
<h3 class="tsd-anchor-link"><span>zeroes</span><a href="#zeroes" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
387
|
-
<ul class="tsd-signatures
|
|
388
|
-
<li class="tsd-signature" id="zeroes.zeroes-1"><span class="tsd-signature-symbol">get</span> zeroes<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../interfaces/algebra_equation.ISolution.html" class="tsd-signature-type
|
|
388
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L207">algebra/polynom.ts:207</a></li></ul></aside></li></ul></section>
|
|
389
|
+
<section class="tsd-panel tsd-member"><a id="zeroes" class="tsd-anchor"></a>
|
|
390
|
+
<h3 class="tsd-anchor-link"><span>zeroes</span><a href="#zeroes" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
391
|
+
<ul class="tsd-signatures">
|
|
392
|
+
<li class="tsd-signature" id="zeroes.zeroes-1"><span class="tsd-signature-symbol">get</span> zeroes<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../interfaces/algebra_equation.ISolution.html" class="tsd-signature-type tsd-kind-interface">ISolution</a><span class="tsd-signature-symbol">[]</span></li>
|
|
389
393
|
<li class="tsd-description">
|
|
390
|
-
<h4 class="tsd-returns-title">Returns <a href="../interfaces/algebra_equation.ISolution.html" class="tsd-signature-type
|
|
394
|
+
<h4 class="tsd-returns-title">Returns <a href="../interfaces/algebra_equation.ISolution.html" class="tsd-signature-type tsd-kind-interface">ISolution</a><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
|
391
395
|
<ul>
|
|
392
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
396
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L85">algebra/polynom.ts:85</a></li></ul></aside></li></ul></section></section>
|
|
393
397
|
<section class="tsd-panel-group tsd-member-group">
|
|
394
398
|
<h2>Methods</h2>
|
|
395
|
-
<section class="tsd-panel tsd-member tsd-
|
|
396
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_factorize2nd<wbr/>Degree</span><a href="#_factorize2ndDegree" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
397
|
-
<ul class="tsd-signatures tsd-
|
|
398
|
-
<li class="tsd-signature tsd-anchor-link" id="_factorize2ndDegree._factorize2ndDegree-1"
|
|
399
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_factorize2ndDegree" class="tsd-anchor"></a>
|
|
400
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_factorize2nd<wbr/>Degree</span><a href="#_factorize2ndDegree" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
401
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
402
|
+
<li class="tsd-signature tsd-anchor-link" id="_factorize2ndDegree._factorize2ndDegree-1"><span class="tsd-kind-call-signature">_factorize2nd<wbr/>Degree</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">letter</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><span class="tsd-signature-symbol">[]</span><a href="#_factorize2ndDegree._factorize2ndDegree-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
399
403
|
<li class="tsd-description">
|
|
400
404
|
<div class="tsd-parameters">
|
|
401
405
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
402
406
|
<ul class="tsd-parameter-list">
|
|
403
407
|
<li>
|
|
404
|
-
<h5>letter
|
|
405
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
408
|
+
<h5><span class="tsd-kind-parameter">letter</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
409
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
|
406
410
|
<ul>
|
|
407
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
408
|
-
<section class="tsd-panel tsd-member tsd-
|
|
409
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_factorize<wbr/>By<wbr/>Groups</span><a href="#_factorizeByGroups" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
410
|
-
<ul class="tsd-signatures tsd-
|
|
411
|
-
<li class="tsd-signature tsd-anchor-link" id="_factorizeByGroups._factorizeByGroups-1">_factorize<wbr/>By<wbr/>Groups
|
|
411
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1418">algebra/polynom.ts:1418</a></li></ul></aside></li></ul></section>
|
|
412
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_factorizeByGroups" class="tsd-anchor"></a>
|
|
413
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_factorize<wbr/>By<wbr/>Groups</span><a href="#_factorizeByGroups" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
414
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
415
|
+
<li class="tsd-signature tsd-anchor-link" id="_factorizeByGroups._factorizeByGroups-1"><span class="tsd-kind-call-signature">_factorize<wbr/>By<wbr/>Groups</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><span class="tsd-signature-symbol">[]</span><a href="#_factorizeByGroups._factorizeByGroups-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
412
416
|
<li class="tsd-description">
|
|
413
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
417
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
|
414
418
|
<ul>
|
|
415
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
416
|
-
<section class="tsd-panel tsd-member tsd-
|
|
417
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_get<wbr/>All<wbr/>Potential<wbr/>Factors</span><a href="#_getAllPotentialFactors" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
418
|
-
<ul class="tsd-signatures tsd-
|
|
419
|
-
<li class="tsd-signature tsd-anchor-link" id="_getAllPotentialFactors._getAllPotentialFactors-1">_get<wbr/>All<wbr/>Potential<wbr/>Factors
|
|
419
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1513">algebra/polynom.ts:1513</a></li></ul></aside></li></ul></section>
|
|
420
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_getAllPotentialFactors" class="tsd-anchor"></a>
|
|
421
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_get<wbr/>All<wbr/>Potential<wbr/>Factors</span><a href="#_getAllPotentialFactors" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
422
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
423
|
+
<li class="tsd-signature tsd-anchor-link" id="_getAllPotentialFactors._getAllPotentialFactors-1"><span class="tsd-kind-call-signature">_get<wbr/>All<wbr/>Potential<wbr/>Factors</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">P</span>, <span class="tsd-kind-parameter">maxDegree</span>, <span class="tsd-kind-parameter">letter</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><span class="tsd-signature-symbol">[]</span><a href="#_getAllPotentialFactors._getAllPotentialFactors-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
420
424
|
<li class="tsd-description">
|
|
421
425
|
<div class="tsd-parameters">
|
|
422
426
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
423
427
|
<ul class="tsd-parameter-list">
|
|
424
428
|
<li>
|
|
425
|
-
<h5>P
|
|
429
|
+
<h5><span class="tsd-kind-parameter">P</span>: <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h5></li>
|
|
426
430
|
<li>
|
|
427
|
-
<h5>maxDegree
|
|
431
|
+
<h5><span class="tsd-kind-parameter">maxDegree</span>: <span class="tsd-signature-type">number</span></h5></li>
|
|
428
432
|
<li>
|
|
429
|
-
<h5>letter
|
|
430
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
433
|
+
<h5><span class="tsd-kind-parameter">letter</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
434
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
|
431
435
|
<ul>
|
|
432
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
433
|
-
<section class="tsd-panel tsd-member tsd-
|
|
434
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_parse<wbr/>String</span><a href="#_parseString" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
435
|
-
<ul class="tsd-signatures tsd-
|
|
436
|
-
<li class="tsd-signature tsd-anchor-link" id="_parseString._parseString-1"
|
|
436
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1238">algebra/polynom.ts:1238</a></li></ul></aside></li></ul></section>
|
|
437
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_parseString" class="tsd-anchor"></a>
|
|
438
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_parse<wbr/>String</span><a href="#_parseString" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
439
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
440
|
+
<li class="tsd-signature tsd-anchor-link" id="_parseString._parseString-1"><span class="tsd-kind-call-signature">_parse<wbr/>String</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">inputStr</span>, <span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">values</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#_parseString._parseString-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
437
441
|
<li class="tsd-description">
|
|
438
442
|
<div class="tsd-parameters">
|
|
439
443
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
440
444
|
<ul class="tsd-parameter-list">
|
|
441
445
|
<li>
|
|
442
|
-
<h5>inputStr
|
|
446
|
+
<h5><span class="tsd-kind-parameter">inputStr</span>: <span class="tsd-signature-type">string</span></h5></li>
|
|
443
447
|
<li>
|
|
444
|
-
<h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span>values
|
|
445
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
448
|
+
<h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">values</span>: <span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
|
|
449
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4><aside class="tsd-sources">
|
|
446
450
|
<ul>
|
|
447
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
448
|
-
<section class="tsd-panel tsd-member
|
|
449
|
-
<h3 class="tsd-anchor-link"><span>add</span><a href="#add" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
450
|
-
<ul class="tsd-signatures
|
|
451
|
-
<li class="tsd-signature tsd-anchor-link" id="add.add-1"
|
|
451
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1259">algebra/polynom.ts:1259</a></li></ul></aside></li></ul></section>
|
|
452
|
+
<section class="tsd-panel tsd-member"><a id="add" class="tsd-anchor"></a>
|
|
453
|
+
<h3 class="tsd-anchor-link"><span>add</span><a href="#add" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
454
|
+
<ul class="tsd-signatures">
|
|
455
|
+
<li class="tsd-signature tsd-anchor-link" id="add.add-1"><span class="tsd-kind-call-signature">add</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">values</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#add.add-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
452
456
|
<li class="tsd-description">
|
|
453
457
|
<div class="tsd-parameters">
|
|
454
458
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
455
459
|
<ul class="tsd-parameter-list">
|
|
456
460
|
<li>
|
|
457
|
-
<h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span>values
|
|
458
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
461
|
+
<h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">values</span>: <span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
|
|
462
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4><aside class="tsd-sources">
|
|
459
463
|
<ul>
|
|
460
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
461
|
-
<section class="tsd-panel tsd-member
|
|
462
|
-
<h3 class="tsd-anchor-link"><span>add<wbr/>Token</span><a href="#addToken" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
463
|
-
<ul class="tsd-signatures
|
|
464
|
-
<li class="tsd-signature tsd-anchor-link" id="addToken.addToken-1"
|
|
464
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L400">algebra/polynom.ts:400</a></li></ul></aside></li></ul></section>
|
|
465
|
+
<section class="tsd-panel tsd-member"><a id="addToken" class="tsd-anchor"></a>
|
|
466
|
+
<h3 class="tsd-anchor-link"><span>add<wbr/>Token</span><a href="#addToken" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
467
|
+
<ul class="tsd-signatures">
|
|
468
|
+
<li class="tsd-signature tsd-anchor-link" id="addToken.addToken-1"><span class="tsd-kind-call-signature">add<wbr/>Token</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">stack</span>, <span class="tsd-kind-parameter">element</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#addToken.addToken-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
465
469
|
<li class="tsd-description">
|
|
466
470
|
<div class="tsd-parameters">
|
|
467
471
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
468
472
|
<ul class="tsd-parameter-list">
|
|
469
473
|
<li>
|
|
470
|
-
<h5>stack
|
|
474
|
+
<h5><span class="tsd-kind-parameter">stack</span>: <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><span class="tsd-signature-symbol">[]</span></h5></li>
|
|
471
475
|
<li>
|
|
472
|
-
<h5>element
|
|
476
|
+
<h5><span class="tsd-kind-parameter">element</span>: <a href="../types/shutingyard.Token.html" class="tsd-signature-type tsd-kind-type-alias">Token</a></h5></li></ul></div>
|
|
473
477
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
474
478
|
<ul>
|
|
475
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
476
|
-
<section class="tsd-panel tsd-member
|
|
477
|
-
<h3 class="tsd-anchor-link"><span>clone</span><a href="#clone" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
478
|
-
<ul class="tsd-signatures
|
|
479
|
-
<li class="tsd-signature tsd-anchor-link" id="clone.clone-1">clone
|
|
479
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L234">algebra/polynom.ts:234</a></li></ul></aside></li></ul></section>
|
|
480
|
+
<section class="tsd-panel tsd-member"><a id="clone" class="tsd-anchor"></a>
|
|
481
|
+
<h3 class="tsd-anchor-link"><span>clone</span><a href="#clone" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
482
|
+
<ul class="tsd-signatures">
|
|
483
|
+
<li class="tsd-signature tsd-anchor-link" id="clone.clone-1"><span class="tsd-kind-call-signature">clone</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#clone.clone-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
480
484
|
<li class="tsd-description">
|
|
481
485
|
<div class="tsd-comment tsd-typography"><p>Clone the polynom</p>
|
|
482
486
|
</div>
|
|
483
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
487
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4>
|
|
488
|
+
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
484
489
|
<ul>
|
|
485
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
486
|
-
<section class="tsd-panel tsd-member
|
|
487
|
-
<h3 class="tsd-anchor-link"><span>common<wbr/>Monom</span><a href="#commonMonom" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
488
|
-
<ul class="tsd-signatures
|
|
489
|
-
<li class="tsd-signature tsd-anchor-link" id="commonMonom.commonMonom-1">common<wbr/>Monom
|
|
490
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L349">algebra/polynom.ts:349</a></li></ul></aside></li></ul></section>
|
|
491
|
+
<section class="tsd-panel tsd-member"><a id="commonMonom" class="tsd-anchor"></a>
|
|
492
|
+
<h3 class="tsd-anchor-link"><span>common<wbr/>Monom</span><a href="#commonMonom" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
493
|
+
<ul class="tsd-signatures">
|
|
494
|
+
<li class="tsd-signature tsd-anchor-link" id="commonMonom.commonMonom-1"><span class="tsd-kind-call-signature">common<wbr/>Monom</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_monom.Monom.html" class="tsd-signature-type tsd-kind-class">Monom</a><a href="#commonMonom.commonMonom-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
490
495
|
<li class="tsd-description">
|
|
491
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_monom.Monom.html" class="tsd-signature-type
|
|
496
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_monom.Monom.html" class="tsd-signature-type tsd-kind-class">Monom</a></h4><aside class="tsd-sources">
|
|
492
497
|
<ul>
|
|
493
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
494
|
-
<section class="tsd-panel tsd-member
|
|
495
|
-
<h3 class="tsd-anchor-link"><span>compare</span><a href="#compare" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
496
|
-
<ul class="tsd-signatures
|
|
497
|
-
<li class="tsd-signature tsd-anchor-link" id="compare.compare-1"
|
|
498
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1189">algebra/polynom.ts:1189</a></li></ul></aside></li></ul></section>
|
|
499
|
+
<section class="tsd-panel tsd-member"><a id="compare" class="tsd-anchor"></a>
|
|
500
|
+
<h3 class="tsd-anchor-link"><span>compare</span><a href="#compare" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
501
|
+
<ul class="tsd-signatures">
|
|
502
|
+
<li class="tsd-signature tsd-anchor-link" id="compare.compare-1"><span class="tsd-kind-call-signature">compare</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">P</span>, <span class="tsd-kind-parameter">sign</span><span class="tsd-signature-symbol">?</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#compare.compare-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
498
503
|
<li class="tsd-description">
|
|
499
504
|
<div class="tsd-comment tsd-typography"><p>Compare the current coefficient with another coefficient</p>
|
|
500
505
|
</div>
|
|
@@ -502,91 +507,94 @@
|
|
|
502
507
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
503
508
|
<ul class="tsd-parameter-list">
|
|
504
509
|
<li>
|
|
505
|
-
<h5>P
|
|
510
|
+
<h5><span class="tsd-kind-parameter">P</span>: <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h5>
|
|
511
|
+
<div class="tsd-comment tsd-typography"></div></li>
|
|
506
512
|
<li>
|
|
507
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> sign
|
|
513
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">sign</span>: <span class="tsd-signature-type">string</span></h5>
|
|
508
514
|
<div class="tsd-comment tsd-typography"><p>(string| default is =): authorized values: =, <, <=, >, >= with some variations.</p>
|
|
509
|
-
</div
|
|
510
|
-
<
|
|
515
|
+
</div>
|
|
516
|
+
<div class="tsd-comment tsd-typography"></div></li></ul></div>
|
|
517
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
|
518
|
+
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
511
519
|
<ul>
|
|
512
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
513
|
-
<section class="tsd-panel tsd-member
|
|
514
|
-
<h3 class="tsd-anchor-link"><span>degree</span><a href="#degree" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
515
|
-
<ul class="tsd-signatures
|
|
516
|
-
<li class="tsd-signature tsd-anchor-link" id="degree.degree-1">degree
|
|
520
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L557">algebra/polynom.ts:557</a></li></ul></aside></li></ul></section>
|
|
521
|
+
<section class="tsd-panel tsd-member"><a id="degree" class="tsd-anchor"></a>
|
|
522
|
+
<h3 class="tsd-anchor-link"><span>degree</span><a href="#degree" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
523
|
+
<ul class="tsd-signatures">
|
|
524
|
+
<li class="tsd-signature tsd-anchor-link" id="degree.degree-1"><span class="tsd-kind-call-signature">degree</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">letter</span><span class="tsd-signature-symbol">?</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a><a href="#degree.degree-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
517
525
|
<li class="tsd-description">
|
|
518
526
|
<div class="tsd-parameters">
|
|
519
527
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
520
528
|
<ul class="tsd-parameter-list">
|
|
521
529
|
<li>
|
|
522
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> letter
|
|
523
|
-
<h4 class="tsd-returns-title">Returns <a href="coefficients_fraction.Fraction.html" class="tsd-signature-type
|
|
530
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">letter</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
531
|
+
<h4 class="tsd-returns-title">Returns <a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a></h4><aside class="tsd-sources">
|
|
524
532
|
<ul>
|
|
525
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
526
|
-
<section class="tsd-panel tsd-member
|
|
527
|
-
<h3 class="tsd-anchor-link"><span>derivative</span><a href="#derivative" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
528
|
-
<ul class="tsd-signatures
|
|
529
|
-
<li class="tsd-signature tsd-anchor-link" id="derivative.derivative-1">derivative
|
|
533
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L863">algebra/polynom.ts:863</a></li></ul></aside></li></ul></section>
|
|
534
|
+
<section class="tsd-panel tsd-member"><a id="derivative" class="tsd-anchor"></a>
|
|
535
|
+
<h3 class="tsd-anchor-link"><span>derivative</span><a href="#derivative" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
536
|
+
<ul class="tsd-signatures">
|
|
537
|
+
<li class="tsd-signature tsd-anchor-link" id="derivative.derivative-1"><span class="tsd-kind-call-signature">derivative</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">letter</span><span class="tsd-signature-symbol">?</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#derivative.derivative-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
530
538
|
<li class="tsd-description">
|
|
531
539
|
<div class="tsd-parameters">
|
|
532
540
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
533
541
|
<ul class="tsd-parameter-list">
|
|
534
542
|
<li>
|
|
535
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> letter
|
|
536
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
543
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">letter</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
544
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4><aside class="tsd-sources">
|
|
537
545
|
<ul>
|
|
538
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
539
|
-
<section class="tsd-panel tsd-member
|
|
540
|
-
<h3 class="tsd-anchor-link"><span>divide</span><a href="#divide" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
541
|
-
<ul class="tsd-signatures
|
|
542
|
-
<li class="tsd-signature tsd-anchor-link" id="divide.divide-1"
|
|
546
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L932">algebra/polynom.ts:932</a></li></ul></aside></li></ul></section>
|
|
547
|
+
<section class="tsd-panel tsd-member"><a id="divide" class="tsd-anchor"></a>
|
|
548
|
+
<h3 class="tsd-anchor-link"><span>divide</span><a href="#divide" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
549
|
+
<ul class="tsd-signatures">
|
|
550
|
+
<li class="tsd-signature tsd-anchor-link" id="divide.divide-1"><span class="tsd-kind-call-signature">divide</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">value</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#divide.divide-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
543
551
|
<li class="tsd-description">
|
|
544
552
|
<div class="tsd-parameters">
|
|
545
553
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
546
554
|
<ul class="tsd-parameter-list">
|
|
547
555
|
<li>
|
|
548
|
-
<h5>value
|
|
549
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
556
|
+
<h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
|
|
557
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4><aside class="tsd-sources">
|
|
550
558
|
<ul>
|
|
551
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
552
|
-
<section class="tsd-panel tsd-member tsd-
|
|
553
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>divide<wbr/>By<wbr/>Fraction</span><a href="#divideByFraction" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
554
|
-
<ul class="tsd-signatures tsd-
|
|
555
|
-
<li class="tsd-signature tsd-anchor-link" id="divideByFraction.divideByFraction-1">divide<wbr/>By<wbr/>Fraction
|
|
559
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L507">algebra/polynom.ts:507</a></li></ul></aside></li></ul></section>
|
|
560
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="divideByFraction" class="tsd-anchor"></a>
|
|
561
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>divide<wbr/>By<wbr/>Fraction</span><a href="#divideByFraction" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
562
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
563
|
+
<li class="tsd-signature tsd-anchor-link" id="divideByFraction.divideByFraction-1"><span class="tsd-kind-call-signature">divide<wbr/>By<wbr/>Fraction</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">F</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#divideByFraction.divideByFraction-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
556
564
|
<li class="tsd-description">
|
|
557
565
|
<div class="tsd-parameters">
|
|
558
566
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
559
567
|
<ul class="tsd-parameter-list">
|
|
560
568
|
<li>
|
|
561
|
-
<h5>F
|
|
562
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
569
|
+
<h5><span class="tsd-kind-parameter">F</span>: <a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a></h5></li></ul></div>
|
|
570
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4><aside class="tsd-sources">
|
|
563
571
|
<ul>
|
|
564
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
565
|
-
<section class="tsd-panel tsd-member tsd-
|
|
566
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>divide<wbr/>By<wbr/>Integer</span><a href="#divideByInteger" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
567
|
-
<ul class="tsd-signatures tsd-
|
|
568
|
-
<li class="tsd-signature tsd-anchor-link" id="divideByInteger.divideByInteger-1">divide<wbr/>By<wbr/>Integer
|
|
572
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1411">algebra/polynom.ts:1411</a></li></ul></aside></li></ul></section>
|
|
573
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="divideByInteger" class="tsd-anchor"></a>
|
|
574
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>divide<wbr/>By<wbr/>Integer</span><a href="#divideByInteger" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
575
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
576
|
+
<li class="tsd-signature tsd-anchor-link" id="divideByInteger.divideByInteger-1"><span class="tsd-kind-call-signature">divide<wbr/>By<wbr/>Integer</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">nb</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#divideByInteger.divideByInteger-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
569
577
|
<li class="tsd-description">
|
|
570
578
|
<div class="tsd-parameters">
|
|
571
579
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
572
580
|
<ul class="tsd-parameter-list">
|
|
573
581
|
<li>
|
|
574
|
-
<h5>nb
|
|
575
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
582
|
+
<h5><span class="tsd-kind-parameter">nb</span>: <span class="tsd-signature-type">number</span></h5></li></ul></div>
|
|
583
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4><aside class="tsd-sources">
|
|
576
584
|
<ul>
|
|
577
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
578
|
-
<section class="tsd-panel tsd-member
|
|
579
|
-
<h3 class="tsd-anchor-link"><span>empty</span><a href="#empty" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
580
|
-
<ul class="tsd-signatures
|
|
581
|
-
<li class="tsd-signature tsd-anchor-link" id="empty.empty-1">empty
|
|
585
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1403">algebra/polynom.ts:1403</a></li></ul></aside></li></ul></section>
|
|
586
|
+
<section class="tsd-panel tsd-member"><a id="empty" class="tsd-anchor"></a>
|
|
587
|
+
<h3 class="tsd-anchor-link"><span>empty</span><a href="#empty" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
588
|
+
<ul class="tsd-signatures">
|
|
589
|
+
<li class="tsd-signature tsd-anchor-link" id="empty.empty-1"><span class="tsd-kind-call-signature">empty</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#empty.empty-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
582
590
|
<li class="tsd-description">
|
|
583
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
591
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4><aside class="tsd-sources">
|
|
584
592
|
<ul>
|
|
585
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
586
|
-
<section class="tsd-panel tsd-member
|
|
587
|
-
<h3 class="tsd-anchor-link"><span>euclidian</span><a href="#euclidian" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
588
|
-
<ul class="tsd-signatures
|
|
589
|
-
<li class="tsd-signature tsd-anchor-link" id="euclidian.euclidian-1"
|
|
593
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L382">algebra/polynom.ts:382</a></li></ul></aside></li></ul></section>
|
|
594
|
+
<section class="tsd-panel tsd-member"><a id="euclidian" class="tsd-anchor"></a>
|
|
595
|
+
<h3 class="tsd-anchor-link"><span>euclidian</span><a href="#euclidian" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
596
|
+
<ul class="tsd-signatures">
|
|
597
|
+
<li class="tsd-signature tsd-anchor-link" id="euclidian.euclidian-1"><span class="tsd-kind-call-signature">euclidian</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">P</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../interfaces/algebra_polynom.IEuclidian.html" class="tsd-signature-type tsd-kind-interface">IEuclidian</a><a href="#euclidian.euclidian-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
590
598
|
<li class="tsd-description">
|
|
591
599
|
<div class="tsd-comment tsd-typography"><p>Divide the current polynom by another polynom.</p>
|
|
592
600
|
</div>
|
|
@@ -594,42 +602,44 @@
|
|
|
594
602
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
595
603
|
<ul class="tsd-parameter-list">
|
|
596
604
|
<li>
|
|
597
|
-
<h5>P
|
|
605
|
+
<h5><span class="tsd-kind-parameter">P</span>: <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h5>
|
|
598
606
|
<div class="tsd-comment tsd-typography"><p>returns {quotient: Polynom, reminder: Polynom}</p>
|
|
599
|
-
</div
|
|
600
|
-
<
|
|
607
|
+
</div>
|
|
608
|
+
<div class="tsd-comment tsd-typography"></div></li></ul></div>
|
|
609
|
+
<h4 class="tsd-returns-title">Returns <a href="../interfaces/algebra_polynom.IEuclidian.html" class="tsd-signature-type tsd-kind-interface">IEuclidian</a></h4>
|
|
610
|
+
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
601
611
|
<ul>
|
|
602
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
603
|
-
<section class="tsd-panel tsd-member
|
|
604
|
-
<h3 class="tsd-anchor-link"><span>evaluate</span><a href="#evaluate" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
605
|
-
<ul class="tsd-signatures
|
|
606
|
-
<li class="tsd-signature tsd-anchor-link" id="evaluate.evaluate-1"
|
|
612
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L459">algebra/polynom.ts:459</a></li></ul></aside></li></ul></section>
|
|
613
|
+
<section class="tsd-panel tsd-member"><a id="evaluate" class="tsd-anchor"></a>
|
|
614
|
+
<h3 class="tsd-anchor-link"><span>evaluate</span><a href="#evaluate" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
615
|
+
<ul class="tsd-signatures">
|
|
616
|
+
<li class="tsd-signature tsd-anchor-link" id="evaluate.evaluate-1"><span class="tsd-kind-call-signature">evaluate</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">values</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a><a href="#evaluate.evaluate-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
607
617
|
<li class="tsd-description">
|
|
608
618
|
<div class="tsd-parameters">
|
|
609
619
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
610
620
|
<ul class="tsd-parameter-list">
|
|
611
621
|
<li>
|
|
612
|
-
<h5>values
|
|
613
|
-
<h4 class="tsd-returns-title">Returns <a href="coefficients_fraction.Fraction.html" class="tsd-signature-type
|
|
622
|
+
<h5><span class="tsd-kind-parameter">values</span>: <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> | </span><a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a><span class="tsd-signature-symbol"> | </span><a href="../types/algebra_monom.literalType.html" class="tsd-signature-type tsd-kind-type-alias">literalType</a></h5></li></ul></div>
|
|
623
|
+
<h4 class="tsd-returns-title">Returns <a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a></h4><aside class="tsd-sources">
|
|
614
624
|
<ul>
|
|
615
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
616
|
-
<section class="tsd-panel tsd-member
|
|
617
|
-
<h3 class="tsd-anchor-link"><span>evaluate<wbr/>As<wbr/>Numeric</span><a href="#evaluateAsNumeric" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
618
|
-
<ul class="tsd-signatures
|
|
619
|
-
<li class="tsd-signature tsd-anchor-link" id="evaluateAsNumeric.evaluateAsNumeric-1"
|
|
625
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L912">algebra/polynom.ts:912</a></li></ul></aside></li></ul></section>
|
|
626
|
+
<section class="tsd-panel tsd-member"><a id="evaluateAsNumeric" class="tsd-anchor"></a>
|
|
627
|
+
<h3 class="tsd-anchor-link"><span>evaluate<wbr/>As<wbr/>Numeric</span><a href="#evaluateAsNumeric" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
628
|
+
<ul class="tsd-signatures">
|
|
629
|
+
<li class="tsd-signature tsd-anchor-link" id="evaluateAsNumeric.evaluateAsNumeric-1"><span class="tsd-kind-call-signature">evaluate<wbr/>As<wbr/>Numeric</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">values</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><a href="#evaluateAsNumeric.evaluateAsNumeric-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
620
630
|
<li class="tsd-description">
|
|
621
631
|
<div class="tsd-parameters">
|
|
622
632
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
623
633
|
<ul class="tsd-parameter-list">
|
|
624
634
|
<li>
|
|
625
|
-
<h5>values
|
|
635
|
+
<h5><span class="tsd-kind-parameter">values</span>: <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">{ </span><br/><span> </span>[<span class="tsd-kind-index-signature">Key</span>: <span class="tsd-signature-type">string</span>]<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></h5></li></ul></div>
|
|
626
636
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
|
|
627
637
|
<ul>
|
|
628
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
629
|
-
<section class="tsd-panel tsd-member
|
|
630
|
-
<h3 class="tsd-anchor-link"><span>factorize</span><a href="#factorize" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
631
|
-
<ul class="tsd-signatures
|
|
632
|
-
<li class="tsd-signature tsd-anchor-link" id="factorize.factorize-1">factorize
|
|
638
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L923">algebra/polynom.ts:923</a></li></ul></aside></li></ul></section>
|
|
639
|
+
<section class="tsd-panel tsd-member"><a id="factorize" class="tsd-anchor"></a>
|
|
640
|
+
<h3 class="tsd-anchor-link"><span>factorize</span><a href="#factorize" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
641
|
+
<ul class="tsd-signatures">
|
|
642
|
+
<li class="tsd-signature tsd-anchor-link" id="factorize.factorize-1"><span class="tsd-kind-call-signature">factorize</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">letter</span><span class="tsd-signature-symbol">?</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><span class="tsd-signature-symbol">[]</span><a href="#factorize.factorize-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
633
643
|
<li class="tsd-description">
|
|
634
644
|
<div class="tsd-comment tsd-typography"><p>Factorize a polynom and store the best results in factors.</p>
|
|
635
645
|
</div>
|
|
@@ -637,381 +647,382 @@
|
|
|
637
647
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
638
648
|
<ul class="tsd-parameter-list">
|
|
639
649
|
<li>
|
|
640
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> letter
|
|
641
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
650
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">letter</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
651
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><span class="tsd-signature-symbol">[]</span></h4>
|
|
652
|
+
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
642
653
|
<ul>
|
|
643
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
644
|
-
<section class="tsd-panel tsd-member
|
|
645
|
-
<h3 class="tsd-anchor-link"><span>gcd<wbr/>Denominator</span><a href="#gcdDenominator" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
646
|
-
<ul class="tsd-signatures
|
|
647
|
-
<li class="tsd-signature tsd-anchor-link" id="gcdDenominator.gcdDenominator-1">gcd<wbr/>Denominator
|
|
654
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L972">algebra/polynom.ts:972</a></li></ul></aside></li></ul></section>
|
|
655
|
+
<section class="tsd-panel tsd-member"><a id="gcdDenominator" class="tsd-anchor"></a>
|
|
656
|
+
<h3 class="tsd-anchor-link"><span>gcd<wbr/>Denominator</span><a href="#gcdDenominator" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
657
|
+
<ul class="tsd-signatures">
|
|
658
|
+
<li class="tsd-signature tsd-anchor-link" id="gcdDenominator.gcdDenominator-1"><span class="tsd-kind-call-signature">gcd<wbr/>Denominator</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><a href="#gcdDenominator.gcdDenominator-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
648
659
|
<li class="tsd-description">
|
|
649
660
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
|
|
650
661
|
<ul>
|
|
651
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
652
|
-
<section class="tsd-panel tsd-member
|
|
653
|
-
<h3 class="tsd-anchor-link"><span>gcd<wbr/>Numerator</span><a href="#gcdNumerator" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
654
|
-
<ul class="tsd-signatures
|
|
655
|
-
<li class="tsd-signature tsd-anchor-link" id="gcdNumerator.gcdNumerator-1">gcd<wbr/>Numerator
|
|
662
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1174">algebra/polynom.ts:1174</a></li></ul></aside></li></ul></section>
|
|
663
|
+
<section class="tsd-panel tsd-member"><a id="gcdNumerator" class="tsd-anchor"></a>
|
|
664
|
+
<h3 class="tsd-anchor-link"><span>gcd<wbr/>Numerator</span><a href="#gcdNumerator" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
665
|
+
<ul class="tsd-signatures">
|
|
666
|
+
<li class="tsd-signature tsd-anchor-link" id="gcdNumerator.gcdNumerator-1"><span class="tsd-kind-call-signature">gcd<wbr/>Numerator</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><a href="#gcdNumerator.gcdNumerator-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
656
667
|
<li class="tsd-description">
|
|
657
668
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
|
|
658
669
|
<ul>
|
|
659
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
660
|
-
<section class="tsd-panel tsd-member tsd-
|
|
661
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>gen<wbr/>Display</span><a href="#genDisplay" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
662
|
-
<ul class="tsd-signatures tsd-
|
|
663
|
-
<li class="tsd-signature tsd-anchor-link" id="genDisplay.genDisplay-1">gen<wbr/>Display
|
|
670
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1182">algebra/polynom.ts:1182</a></li></ul></aside></li></ul></section>
|
|
671
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="genDisplay" class="tsd-anchor"></a>
|
|
672
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>gen<wbr/>Display</span><a href="#genDisplay" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
673
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
674
|
+
<li class="tsd-signature tsd-anchor-link" id="genDisplay.genDisplay-1"><span class="tsd-kind-call-signature">gen<wbr/>Display</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">output</span><span class="tsd-signature-symbol">?</span>, <span class="tsd-kind-parameter">forceSign</span><span class="tsd-signature-symbol">?</span>, <span class="tsd-kind-parameter">wrapParentheses</span><span class="tsd-signature-symbol">?</span>, <span class="tsd-kind-parameter">withAllMultSign</span><span class="tsd-signature-symbol">?</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><a href="#genDisplay.genDisplay-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
664
675
|
<li class="tsd-description">
|
|
665
676
|
<div class="tsd-parameters">
|
|
666
677
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
667
678
|
<ul class="tsd-parameter-list">
|
|
668
679
|
<li>
|
|
669
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> output
|
|
680
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">output</span>: <span class="tsd-signature-type">string</span></h5></li>
|
|
670
681
|
<li>
|
|
671
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> forceSign
|
|
682
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">forceSign</span>: <span class="tsd-signature-type">boolean</span></h5></li>
|
|
672
683
|
<li>
|
|
673
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> wrapParentheses
|
|
684
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">wrapParentheses</span>: <span class="tsd-signature-type">boolean</span></h5></li>
|
|
674
685
|
<li>
|
|
675
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> withAllMultSign
|
|
686
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">withAllMultSign</span>: <span class="tsd-signature-type">boolean</span></h5></li></ul></div>
|
|
676
687
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
677
688
|
<ul>
|
|
678
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
679
|
-
<section class="tsd-panel tsd-member
|
|
680
|
-
<h3 class="tsd-anchor-link"><span>get<wbr/>Denominators</span><a href="#getDenominators" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
681
|
-
<ul class="tsd-signatures
|
|
682
|
-
<li class="tsd-signature tsd-anchor-link" id="getDenominators.getDenominators-1">get<wbr/>Denominators
|
|
689
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1312">algebra/polynom.ts:1312</a></li></ul></aside></li></ul></section>
|
|
690
|
+
<section class="tsd-panel tsd-member"><a id="getDenominators" class="tsd-anchor"></a>
|
|
691
|
+
<h3 class="tsd-anchor-link"><span>get<wbr/>Denominators</span><a href="#getDenominators" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
692
|
+
<ul class="tsd-signatures">
|
|
693
|
+
<li class="tsd-signature tsd-anchor-link" id="getDenominators.getDenominators-1"><span class="tsd-kind-call-signature">get<wbr/>Denominators</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">[]</span><a href="#getDenominators.getDenominators-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
683
694
|
<li class="tsd-description">
|
|
684
695
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
|
685
696
|
<ul>
|
|
686
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
687
|
-
<section class="tsd-panel tsd-member
|
|
688
|
-
<h3 class="tsd-anchor-link"><span>get<wbr/>Numerators</span><a href="#getNumerators" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
689
|
-
<ul class="tsd-signatures
|
|
690
|
-
<li class="tsd-signature tsd-anchor-link" id="getNumerators.getNumerators-1">get<wbr/>Numerators
|
|
697
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1152">algebra/polynom.ts:1152</a></li></ul></aside></li></ul></section>
|
|
698
|
+
<section class="tsd-panel tsd-member"><a id="getNumerators" class="tsd-anchor"></a>
|
|
699
|
+
<h3 class="tsd-anchor-link"><span>get<wbr/>Numerators</span><a href="#getNumerators" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
700
|
+
<ul class="tsd-signatures">
|
|
701
|
+
<li class="tsd-signature tsd-anchor-link" id="getNumerators.getNumerators-1"><span class="tsd-kind-call-signature">get<wbr/>Numerators</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">[]</span><a href="#getNumerators.getNumerators-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
691
702
|
<li class="tsd-description">
|
|
692
703
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
|
693
704
|
<ul>
|
|
694
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
695
|
-
<section class="tsd-panel tsd-member
|
|
696
|
-
<h3 class="tsd-anchor-link"><span>get<wbr/>Zeroes</span><a href="#getZeroes" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
697
|
-
<ul class="tsd-signatures
|
|
698
|
-
<li class="tsd-signature tsd-anchor-link" id="getZeroes.getZeroes-1">get<wbr/>Zeroes
|
|
705
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1160">algebra/polynom.ts:1160</a></li></ul></aside></li></ul></section>
|
|
706
|
+
<section class="tsd-panel tsd-member"><a id="getZeroes" class="tsd-anchor"></a>
|
|
707
|
+
<h3 class="tsd-anchor-link"><span>get<wbr/>Zeroes</span><a href="#getZeroes" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
708
|
+
<ul class="tsd-signatures">
|
|
709
|
+
<li class="tsd-signature tsd-anchor-link" id="getZeroes.getZeroes-1"><span class="tsd-kind-call-signature">get<wbr/>Zeroes</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../interfaces/algebra_equation.ISolution.html" class="tsd-signature-type tsd-kind-interface">ISolution</a><span class="tsd-signature-symbol">[]</span><a href="#getZeroes.getZeroes-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
699
710
|
<li class="tsd-description">
|
|
700
|
-
<h4 class="tsd-returns-title">Returns <a href="../interfaces/algebra_equation.ISolution.html" class="tsd-signature-type
|
|
711
|
+
<h4 class="tsd-returns-title">Returns <a href="../interfaces/algebra_equation.ISolution.html" class="tsd-signature-type tsd-kind-interface">ISolution</a><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
|
701
712
|
<ul>
|
|
702
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
703
|
-
<section class="tsd-panel tsd-member
|
|
704
|
-
<h3 class="tsd-anchor-link"><span>integrate</span><a href="#integrate" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
705
|
-
<ul class="tsd-signatures
|
|
706
|
-
<li class="tsd-signature tsd-anchor-link" id="integrate.integrate-1"
|
|
713
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1089">algebra/polynom.ts:1089</a></li></ul></aside></li></ul></section>
|
|
714
|
+
<section class="tsd-panel tsd-member"><a id="integrate" class="tsd-anchor"></a>
|
|
715
|
+
<h3 class="tsd-anchor-link"><span>integrate</span><a href="#integrate" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
716
|
+
<ul class="tsd-signatures">
|
|
717
|
+
<li class="tsd-signature tsd-anchor-link" id="integrate.integrate-1"><span class="tsd-kind-call-signature">integrate</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">a</span>, <span class="tsd-kind-parameter">b</span>, <span class="tsd-kind-parameter">letter</span><span class="tsd-signature-symbol">?</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a><a href="#integrate.integrate-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
707
718
|
<li class="tsd-description">
|
|
708
719
|
<div class="tsd-parameters">
|
|
709
720
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
710
721
|
<ul class="tsd-parameter-list">
|
|
711
722
|
<li>
|
|
712
|
-
<h5>a
|
|
723
|
+
<h5><span class="tsd-kind-parameter">a</span>: <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> | </span><a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a></h5></li>
|
|
713
724
|
<li>
|
|
714
|
-
<h5>b
|
|
725
|
+
<h5><span class="tsd-kind-parameter">b</span>: <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> | </span><a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a></h5></li>
|
|
715
726
|
<li>
|
|
716
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> letter
|
|
717
|
-
<h4 class="tsd-returns-title">Returns <a href="coefficients_fraction.Fraction.html" class="tsd-signature-type
|
|
727
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">letter</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
728
|
+
<h4 class="tsd-returns-title">Returns <a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a></h4><aside class="tsd-sources">
|
|
718
729
|
<ul>
|
|
719
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
720
|
-
<section class="tsd-panel tsd-member
|
|
721
|
-
<h3 class="tsd-anchor-link"><span>is<wbr/>Developed</span><a href="#isDeveloped" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
722
|
-
<ul class="tsd-signatures
|
|
723
|
-
<li class="tsd-signature tsd-anchor-link" id="isDeveloped.isDeveloped-1"
|
|
730
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L952">algebra/polynom.ts:952</a></li></ul></aside></li></ul></section>
|
|
731
|
+
<section class="tsd-panel tsd-member"><a id="isDeveloped" class="tsd-anchor"></a>
|
|
732
|
+
<h3 class="tsd-anchor-link"><span>is<wbr/>Developed</span><a href="#isDeveloped" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
733
|
+
<ul class="tsd-signatures">
|
|
734
|
+
<li class="tsd-signature tsd-anchor-link" id="isDeveloped.isDeveloped-1"><span class="tsd-kind-call-signature">is<wbr/>Developed</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">polynomString</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type ">Boolean</span><a href="#isDeveloped.isDeveloped-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
724
735
|
<li class="tsd-description">
|
|
725
736
|
<div class="tsd-parameters">
|
|
726
737
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
727
738
|
<ul class="tsd-parameter-list">
|
|
728
739
|
<li>
|
|
729
|
-
<h5>polynomString
|
|
730
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Boolean</span></h4><aside class="tsd-sources">
|
|
740
|
+
<h5><span class="tsd-kind-parameter">polynomString</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
741
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type ">Boolean</span></h4><aside class="tsd-sources">
|
|
731
742
|
<ul>
|
|
732
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
733
|
-
<section class="tsd-panel tsd-member
|
|
734
|
-
<h3 class="tsd-anchor-link"><span>is<wbr/>Dividable<wbr/>By</span><a href="#isDividableBy" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
735
|
-
<ul class="tsd-signatures
|
|
736
|
-
<li class="tsd-signature tsd-anchor-link" id="isDividableBy.isDividableBy-1">is<wbr/>Dividable<wbr/>By
|
|
743
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L747">algebra/polynom.ts:747</a></li></ul></aside></li></ul></section>
|
|
744
|
+
<section class="tsd-panel tsd-member"><a id="isDividableBy" class="tsd-anchor"></a>
|
|
745
|
+
<h3 class="tsd-anchor-link"><span>is<wbr/>Dividable<wbr/>By</span><a href="#isDividableBy" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
746
|
+
<ul class="tsd-signatures">
|
|
747
|
+
<li class="tsd-signature tsd-anchor-link" id="isDividableBy.isDividableBy-1"><span class="tsd-kind-call-signature">is<wbr/>Dividable<wbr/>By</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">div</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#isDividableBy.isDividableBy-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
737
748
|
<li class="tsd-description">
|
|
738
749
|
<div class="tsd-parameters">
|
|
739
750
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
740
751
|
<ul class="tsd-parameter-list">
|
|
741
752
|
<li>
|
|
742
|
-
<h5>div
|
|
753
|
+
<h5><span class="tsd-kind-parameter">div</span>: <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h5></li></ul></div>
|
|
743
754
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
744
755
|
<ul>
|
|
745
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
746
|
-
<section class="tsd-panel tsd-member
|
|
747
|
-
<h3 class="tsd-anchor-link"><span>is<wbr/>Equal</span><a href="#isEqual" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
748
|
-
<ul class="tsd-signatures
|
|
749
|
-
<li class="tsd-signature tsd-anchor-link" id="isEqual.isEqual-1"
|
|
756
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1073">algebra/polynom.ts:1073</a></li></ul></aside></li></ul></section>
|
|
757
|
+
<section class="tsd-panel tsd-member"><a id="isEqual" class="tsd-anchor"></a>
|
|
758
|
+
<h3 class="tsd-anchor-link"><span>is<wbr/>Equal</span><a href="#isEqual" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
759
|
+
<ul class="tsd-signatures">
|
|
760
|
+
<li class="tsd-signature tsd-anchor-link" id="isEqual.isEqual-1"><span class="tsd-kind-call-signature">is<wbr/>Equal</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">P</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#isEqual.isEqual-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
750
761
|
<li class="tsd-description">
|
|
751
762
|
<div class="tsd-parameters">
|
|
752
763
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
753
764
|
<ul class="tsd-parameter-list">
|
|
754
765
|
<li>
|
|
755
|
-
<h5>P
|
|
766
|
+
<h5><span class="tsd-kind-parameter">P</span>: <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h5></li></ul></div>
|
|
756
767
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
757
768
|
<ul>
|
|
758
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
759
|
-
<section class="tsd-panel tsd-member
|
|
760
|
-
<h3 class="tsd-anchor-link"><span>is<wbr/>Factorized</span><a href="#isFactorized" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
761
|
-
<ul class="tsd-signatures
|
|
762
|
-
<li class="tsd-signature tsd-anchor-link" id="isFactorized.isFactorized-1"
|
|
769
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L606">algebra/polynom.ts:606</a></li></ul></aside></li></ul></section>
|
|
770
|
+
<section class="tsd-panel tsd-member"><a id="isFactorized" class="tsd-anchor"></a>
|
|
771
|
+
<h3 class="tsd-anchor-link"><span>is<wbr/>Factorized</span><a href="#isFactorized" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
772
|
+
<ul class="tsd-signatures">
|
|
773
|
+
<li class="tsd-signature tsd-anchor-link" id="isFactorized.isFactorized-1"><span class="tsd-kind-call-signature">is<wbr/>Factorized</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">polynomString</span>, <span class="tsd-kind-parameter">soft</span><span class="tsd-signature-symbol">?</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#isFactorized.isFactorized-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
763
774
|
<li class="tsd-description">
|
|
764
775
|
<div class="tsd-parameters">
|
|
765
776
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
766
777
|
<ul class="tsd-parameter-list">
|
|
767
778
|
<li>
|
|
768
|
-
<h5>polynomString
|
|
779
|
+
<h5><span class="tsd-kind-parameter">polynomString</span>: <span class="tsd-signature-type">string</span></h5></li>
|
|
769
780
|
<li>
|
|
770
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> soft
|
|
781
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">soft</span>: <span class="tsd-signature-type">boolean</span></h5></li></ul></div>
|
|
771
782
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
772
783
|
<ul>
|
|
773
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
774
|
-
<section class="tsd-panel tsd-member
|
|
775
|
-
<h3 class="tsd-anchor-link"><span>is<wbr/>One</span><a href="#isOne" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
776
|
-
<ul class="tsd-signatures
|
|
777
|
-
<li class="tsd-signature tsd-anchor-link" id="isOne.isOne-1">is<wbr/>One
|
|
784
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L618">algebra/polynom.ts:618</a></li></ul></aside></li></ul></section>
|
|
785
|
+
<section class="tsd-panel tsd-member"><a id="isOne" class="tsd-anchor"></a>
|
|
786
|
+
<h3 class="tsd-anchor-link"><span>is<wbr/>One</span><a href="#isOne" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
787
|
+
<ul class="tsd-signatures">
|
|
788
|
+
<li class="tsd-signature tsd-anchor-link" id="isOne.isOne-1"><span class="tsd-kind-call-signature">is<wbr/>One</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#isOne.isOne-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
778
789
|
<li class="tsd-description">
|
|
779
790
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
780
791
|
<ul>
|
|
781
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
782
|
-
<section class="tsd-panel tsd-member
|
|
783
|
-
<h3 class="tsd-anchor-link"><span>is<wbr/>Opposed<wbr/>At</span><a href="#isOpposedAt" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
784
|
-
<ul class="tsd-signatures
|
|
785
|
-
<li class="tsd-signature tsd-anchor-link" id="isOpposedAt.isOpposedAt-1">is<wbr/>Opposed<wbr/>At
|
|
792
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L602">algebra/polynom.ts:602</a></li></ul></aside></li></ul></section>
|
|
793
|
+
<section class="tsd-panel tsd-member"><a id="isOpposedAt" class="tsd-anchor"></a>
|
|
794
|
+
<h3 class="tsd-anchor-link"><span>is<wbr/>Opposed<wbr/>At</span><a href="#isOpposedAt" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
795
|
+
<ul class="tsd-signatures">
|
|
796
|
+
<li class="tsd-signature tsd-anchor-link" id="isOpposedAt.isOpposedAt-1"><span class="tsd-kind-call-signature">is<wbr/>Opposed<wbr/>At</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">P</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#isOpposedAt.isOpposedAt-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
786
797
|
<li class="tsd-description">
|
|
787
798
|
<div class="tsd-parameters">
|
|
788
799
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
789
800
|
<ul class="tsd-parameter-list">
|
|
790
801
|
<li>
|
|
791
|
-
<h5>P
|
|
802
|
+
<h5><span class="tsd-kind-parameter">P</span>: <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h5></li></ul></div>
|
|
792
803
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
793
804
|
<ul>
|
|
794
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
795
|
-
<section class="tsd-panel tsd-member
|
|
796
|
-
<h3 class="tsd-anchor-link"><span>is<wbr/>Reduced</span><a href="#isReduced" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
797
|
-
<ul class="tsd-signatures
|
|
798
|
-
<li class="tsd-signature tsd-anchor-link" id="isReduced.isReduced-1"
|
|
805
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L614">algebra/polynom.ts:614</a></li></ul></aside></li></ul></section>
|
|
806
|
+
<section class="tsd-panel tsd-member"><a id="isReduced" class="tsd-anchor"></a>
|
|
807
|
+
<h3 class="tsd-anchor-link"><span>is<wbr/>Reduced</span><a href="#isReduced" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
808
|
+
<ul class="tsd-signatures">
|
|
809
|
+
<li class="tsd-signature tsd-anchor-link" id="isReduced.isReduced-1"><span class="tsd-kind-call-signature">is<wbr/>Reduced</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">polynomString</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type ">Boolean</span><a href="#isReduced.isReduced-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
799
810
|
<li class="tsd-description">
|
|
800
811
|
<div class="tsd-parameters">
|
|
801
812
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
802
813
|
<ul class="tsd-parameter-list">
|
|
803
814
|
<li>
|
|
804
|
-
<h5>polynomString
|
|
805
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Boolean</span></h4><aside class="tsd-sources">
|
|
815
|
+
<h5><span class="tsd-kind-parameter">polynomString</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
816
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type ">Boolean</span></h4><aside class="tsd-sources">
|
|
806
817
|
<ul>
|
|
807
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
808
|
-
<section class="tsd-panel tsd-member
|
|
809
|
-
<h3 class="tsd-anchor-link"><span>is<wbr/>Same<wbr/>As</span><a href="#isSameAs" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
810
|
-
<ul class="tsd-signatures
|
|
811
|
-
<li class="tsd-signature tsd-anchor-link" id="isSameAs.isSameAs-1">is<wbr/>Same<wbr/>As
|
|
818
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L726">algebra/polynom.ts:726</a></li></ul></aside></li></ul></section>
|
|
819
|
+
<section class="tsd-panel tsd-member"><a id="isSameAs" class="tsd-anchor"></a>
|
|
820
|
+
<h3 class="tsd-anchor-link"><span>is<wbr/>Same<wbr/>As</span><a href="#isSameAs" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
821
|
+
<ul class="tsd-signatures">
|
|
822
|
+
<li class="tsd-signature tsd-anchor-link" id="isSameAs.isSameAs-1"><span class="tsd-kind-call-signature">is<wbr/>Same<wbr/>As</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">P</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#isSameAs.isSameAs-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
812
823
|
<li class="tsd-description">
|
|
813
824
|
<div class="tsd-parameters">
|
|
814
825
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
815
826
|
<ul class="tsd-parameter-list">
|
|
816
827
|
<li>
|
|
817
|
-
<h5>P
|
|
828
|
+
<h5><span class="tsd-kind-parameter">P</span>: <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h5></li></ul></div>
|
|
818
829
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
819
830
|
<ul>
|
|
820
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
821
|
-
<section class="tsd-panel tsd-member
|
|
822
|
-
<h3 class="tsd-anchor-link"><span>is<wbr/>Zero</span><a href="#isZero" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
823
|
-
<ul class="tsd-signatures
|
|
824
|
-
<li class="tsd-signature tsd-anchor-link" id="isZero.isZero-1">is<wbr/>Zero
|
|
831
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L610">algebra/polynom.ts:610</a></li></ul></aside></li></ul></section>
|
|
832
|
+
<section class="tsd-panel tsd-member"><a id="isZero" class="tsd-anchor"></a>
|
|
833
|
+
<h3 class="tsd-anchor-link"><span>is<wbr/>Zero</span><a href="#isZero" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
834
|
+
<ul class="tsd-signatures">
|
|
835
|
+
<li class="tsd-signature tsd-anchor-link" id="isZero.isZero-1"><span class="tsd-kind-call-signature">is<wbr/>Zero</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#isZero.isZero-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
825
836
|
<li class="tsd-description">
|
|
826
837
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
827
838
|
<ul>
|
|
828
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
829
|
-
<section class="tsd-panel tsd-member
|
|
830
|
-
<h3 class="tsd-anchor-link"><span>lcm<wbr/>Denominator</span><a href="#lcmDenominator" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
831
|
-
<ul class="tsd-signatures
|
|
832
|
-
<li class="tsd-signature tsd-anchor-link" id="lcmDenominator.lcmDenominator-1">lcm<wbr/>Denominator
|
|
839
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L598">algebra/polynom.ts:598</a></li></ul></aside></li></ul></section>
|
|
840
|
+
<section class="tsd-panel tsd-member"><a id="lcmDenominator" class="tsd-anchor"></a>
|
|
841
|
+
<h3 class="tsd-anchor-link"><span>lcm<wbr/>Denominator</span><a href="#lcmDenominator" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
842
|
+
<ul class="tsd-signatures">
|
|
843
|
+
<li class="tsd-signature tsd-anchor-link" id="lcmDenominator.lcmDenominator-1"><span class="tsd-kind-call-signature">lcm<wbr/>Denominator</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><a href="#lcmDenominator.lcmDenominator-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
833
844
|
<li class="tsd-description">
|
|
834
845
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
|
|
835
846
|
<ul>
|
|
836
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
837
|
-
<section class="tsd-panel tsd-member
|
|
838
|
-
<h3 class="tsd-anchor-link"><span>lcm<wbr/>Numerator</span><a href="#lcmNumerator" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
839
|
-
<ul class="tsd-signatures
|
|
840
|
-
<li class="tsd-signature tsd-anchor-link" id="lcmNumerator.lcmNumerator-1">lcm<wbr/>Numerator
|
|
847
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1168">algebra/polynom.ts:1168</a></li></ul></aside></li></ul></section>
|
|
848
|
+
<section class="tsd-panel tsd-member"><a id="lcmNumerator" class="tsd-anchor"></a>
|
|
849
|
+
<h3 class="tsd-anchor-link"><span>lcm<wbr/>Numerator</span><a href="#lcmNumerator" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
850
|
+
<ul class="tsd-signatures">
|
|
851
|
+
<li class="tsd-signature tsd-anchor-link" id="lcmNumerator.lcmNumerator-1"><span class="tsd-kind-call-signature">lcm<wbr/>Numerator</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><a href="#lcmNumerator.lcmNumerator-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
841
852
|
<li class="tsd-description">
|
|
842
853
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
|
|
843
854
|
<ul>
|
|
844
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
845
|
-
<section class="tsd-panel tsd-member
|
|
846
|
-
<h3 class="tsd-anchor-link"><span>letters</span><a href="#letters" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
847
|
-
<ul class="tsd-signatures
|
|
848
|
-
<li class="tsd-signature tsd-anchor-link" id="letters.letters-1">letters
|
|
855
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1178">algebra/polynom.ts:1178</a></li></ul></aside></li></ul></section>
|
|
856
|
+
<section class="tsd-panel tsd-member"><a id="letters" class="tsd-anchor"></a>
|
|
857
|
+
<h3 class="tsd-anchor-link"><span>letters</span><a href="#letters" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
858
|
+
<ul class="tsd-signatures">
|
|
859
|
+
<li class="tsd-signature tsd-anchor-link" id="letters.letters-1"><span class="tsd-kind-call-signature">letters</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><a href="#letters.letters-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
849
860
|
<li class="tsd-description">
|
|
850
861
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
|
851
862
|
<ul>
|
|
852
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
853
|
-
<section class="tsd-panel tsd-member
|
|
854
|
-
<h3 class="tsd-anchor-link"><span>limit<wbr/>To<wbr/>Infinity</span><a href="#limitToInfinity" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
855
|
-
<ul class="tsd-signatures
|
|
856
|
-
<li class="tsd-signature tsd-anchor-link" id="limitToInfinity.limitToInfinity-1">limit<wbr/>To<wbr/>Infinity
|
|
863
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L871">algebra/polynom.ts:871</a></li></ul></aside></li></ul></section>
|
|
864
|
+
<section class="tsd-panel tsd-member"><a id="limitToInfinity" class="tsd-anchor"></a>
|
|
865
|
+
<h3 class="tsd-anchor-link"><span>limit<wbr/>To<wbr/>Infinity</span><a href="#limitToInfinity" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
866
|
+
<ul class="tsd-signatures">
|
|
867
|
+
<li class="tsd-signature tsd-anchor-link" id="limitToInfinity.limitToInfinity-1"><span class="tsd-kind-call-signature">limit<wbr/>To<wbr/>Infinity</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">letter</span><span class="tsd-signature-symbol">?</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a><a href="#limitToInfinity.limitToInfinity-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
857
868
|
<li class="tsd-description">
|
|
858
869
|
<div class="tsd-parameters">
|
|
859
870
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
860
871
|
<ul class="tsd-parameter-list">
|
|
861
872
|
<li>
|
|
862
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> letter
|
|
863
|
-
<h4 class="tsd-returns-title">Returns <a href="coefficients_fraction.Fraction.html" class="tsd-signature-type
|
|
873
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">letter</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
874
|
+
<h4 class="tsd-returns-title">Returns <a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a></h4><aside class="tsd-sources">
|
|
864
875
|
<ul>
|
|
865
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
866
|
-
<section class="tsd-panel tsd-member
|
|
867
|
-
<h3 class="tsd-anchor-link"><span>limit<wbr/>To<wbr/>Negative<wbr/>Infinity</span><a href="#limitToNegativeInfinity" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
868
|
-
<ul class="tsd-signatures
|
|
869
|
-
<li class="tsd-signature tsd-anchor-link" id="limitToNegativeInfinity.limitToNegativeInfinity-1">limit<wbr/>To<wbr/>Negative<wbr/>Infinity
|
|
876
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1209">algebra/polynom.ts:1209</a></li></ul></aside></li></ul></section>
|
|
877
|
+
<section class="tsd-panel tsd-member"><a id="limitToNegativeInfinity" class="tsd-anchor"></a>
|
|
878
|
+
<h3 class="tsd-anchor-link"><span>limit<wbr/>To<wbr/>Negative<wbr/>Infinity</span><a href="#limitToNegativeInfinity" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
879
|
+
<ul class="tsd-signatures">
|
|
880
|
+
<li class="tsd-signature tsd-anchor-link" id="limitToNegativeInfinity.limitToNegativeInfinity-1"><span class="tsd-kind-call-signature">limit<wbr/>To<wbr/>Negative<wbr/>Infinity</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">letter</span><span class="tsd-signature-symbol">?</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a><a href="#limitToNegativeInfinity.limitToNegativeInfinity-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
870
881
|
<li class="tsd-description">
|
|
871
882
|
<div class="tsd-parameters">
|
|
872
883
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
873
884
|
<ul class="tsd-parameter-list">
|
|
874
885
|
<li>
|
|
875
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> letter
|
|
876
|
-
<h4 class="tsd-returns-title">Returns <a href="coefficients_fraction.Fraction.html" class="tsd-signature-type
|
|
886
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">letter</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
887
|
+
<h4 class="tsd-returns-title">Returns <a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a></h4><aside class="tsd-sources">
|
|
877
888
|
<ul>
|
|
878
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
879
|
-
<section class="tsd-panel tsd-member
|
|
880
|
-
<h3 class="tsd-anchor-link"><span>mark_<wbr/>as_<wbr/>dirty</span><a href="#mark_as_dirty" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
881
|
-
<ul class="tsd-signatures
|
|
882
|
-
<li class="tsd-signature tsd-anchor-link" id="mark_as_dirty.mark_as_dirty-1">mark_<wbr/>as_<wbr/>dirty
|
|
889
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1223">algebra/polynom.ts:1223</a></li></ul></aside></li></ul></section>
|
|
890
|
+
<section class="tsd-panel tsd-member"><a id="mark_as_dirty" class="tsd-anchor"></a>
|
|
891
|
+
<h3 class="tsd-anchor-link"><span>mark_<wbr/>as_<wbr/>dirty</span><a href="#mark_as_dirty" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
892
|
+
<ul class="tsd-signatures">
|
|
893
|
+
<li class="tsd-signature tsd-anchor-link" id="mark_as_dirty.mark_as_dirty-1"><span class="tsd-kind-call-signature">mark_<wbr/>as_<wbr/>dirty</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#mark_as_dirty.mark_as_dirty-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
883
894
|
<li class="tsd-description">
|
|
884
895
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
885
896
|
<ul>
|
|
886
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
887
|
-
<section class="tsd-panel tsd-member
|
|
888
|
-
<h3 class="tsd-anchor-link"><span>monom<wbr/>By<wbr/>Degree</span><a href="#monomByDegree" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
889
|
-
<ul class="tsd-signatures
|
|
890
|
-
<li class="tsd-signature tsd-anchor-link" id="monomByDegree.monomByDegree-1">monom<wbr/>By<wbr/>Degree
|
|
897
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L228">algebra/polynom.ts:228</a></li></ul></aside></li></ul></section>
|
|
898
|
+
<section class="tsd-panel tsd-member"><a id="monomByDegree" class="tsd-anchor"></a>
|
|
899
|
+
<h3 class="tsd-anchor-link"><span>monom<wbr/>By<wbr/>Degree</span><a href="#monomByDegree" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
900
|
+
<ul class="tsd-signatures">
|
|
901
|
+
<li class="tsd-signature tsd-anchor-link" id="monomByDegree.monomByDegree-1"><span class="tsd-kind-call-signature">monom<wbr/>By<wbr/>Degree</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">degree</span><span class="tsd-signature-symbol">?</span>, <span class="tsd-kind-parameter">letter</span><span class="tsd-signature-symbol">?</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_monom.Monom.html" class="tsd-signature-type tsd-kind-class">Monom</a><a href="#monomByDegree.monomByDegree-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
891
902
|
<li class="tsd-description">
|
|
892
903
|
<div class="tsd-parameters">
|
|
893
904
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
894
905
|
<ul class="tsd-parameter-list">
|
|
895
906
|
<li>
|
|
896
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> degree
|
|
907
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">degree</span>: <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> | </span><a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a></h5></li>
|
|
897
908
|
<li>
|
|
898
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> letter
|
|
899
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_monom.Monom.html" class="tsd-signature-type
|
|
909
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">letter</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
910
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_monom.Monom.html" class="tsd-signature-type tsd-kind-class">Monom</a></h4><aside class="tsd-sources">
|
|
900
911
|
<ul>
|
|
901
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
902
|
-
<section class="tsd-panel tsd-member
|
|
903
|
-
<h3 class="tsd-anchor-link"><span>monom<wbr/>By<wbr/>Letter</span><a href="#monomByLetter" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
904
|
-
<ul class="tsd-signatures
|
|
905
|
-
<li class="tsd-signature tsd-anchor-link" id="monomByLetter.monomByLetter-1">monom<wbr/>By<wbr/>Letter
|
|
912
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1101">algebra/polynom.ts:1101</a></li></ul></aside></li></ul></section>
|
|
913
|
+
<section class="tsd-panel tsd-member"><a id="monomByLetter" class="tsd-anchor"></a>
|
|
914
|
+
<h3 class="tsd-anchor-link"><span>monom<wbr/>By<wbr/>Letter</span><a href="#monomByLetter" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
915
|
+
<ul class="tsd-signatures">
|
|
916
|
+
<li class="tsd-signature tsd-anchor-link" id="monomByLetter.monomByLetter-1"><span class="tsd-kind-call-signature">monom<wbr/>By<wbr/>Letter</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">letter</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_monom.Monom.html" class="tsd-signature-type tsd-kind-class">Monom</a><a href="#monomByLetter.monomByLetter-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
906
917
|
<li class="tsd-description">
|
|
907
918
|
<div class="tsd-parameters">
|
|
908
919
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
909
920
|
<ul class="tsd-parameter-list">
|
|
910
921
|
<li>
|
|
911
|
-
<h5>letter
|
|
912
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_monom.Monom.html" class="tsd-signature-type
|
|
922
|
+
<h5><span class="tsd-kind-parameter">letter</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
923
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_monom.Monom.html" class="tsd-signature-type tsd-kind-class">Monom</a></h4><aside class="tsd-sources">
|
|
913
924
|
<ul>
|
|
914
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
915
|
-
<section class="tsd-panel tsd-member
|
|
916
|
-
<h3 class="tsd-anchor-link"><span>monoms<wbr/>By<wbr/>Degree</span><a href="#monomsByDegree" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
917
|
-
<ul class="tsd-signatures
|
|
918
|
-
<li class="tsd-signature tsd-anchor-link" id="monomsByDegree.monomsByDegree-1">monoms<wbr/>By<wbr/>Degree
|
|
925
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1140">algebra/polynom.ts:1140</a></li></ul></aside></li></ul></section>
|
|
926
|
+
<section class="tsd-panel tsd-member"><a id="monomsByDegree" class="tsd-anchor"></a>
|
|
927
|
+
<h3 class="tsd-anchor-link"><span>monoms<wbr/>By<wbr/>Degree</span><a href="#monomsByDegree" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
928
|
+
<ul class="tsd-signatures">
|
|
929
|
+
<li class="tsd-signature tsd-anchor-link" id="monomsByDegree.monomsByDegree-1"><span class="tsd-kind-call-signature">monoms<wbr/>By<wbr/>Degree</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">degree</span><span class="tsd-signature-symbol">?</span>, <span class="tsd-kind-parameter">letter</span><span class="tsd-signature-symbol">?</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_monom.Monom.html" class="tsd-signature-type tsd-kind-class">Monom</a><span class="tsd-signature-symbol">[]</span><a href="#monomsByDegree.monomsByDegree-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
919
930
|
<li class="tsd-description">
|
|
920
931
|
<div class="tsd-parameters">
|
|
921
932
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
922
933
|
<ul class="tsd-parameter-list">
|
|
923
934
|
<li>
|
|
924
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> degree
|
|
935
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">degree</span>: <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> | </span><a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a></h5></li>
|
|
925
936
|
<li>
|
|
926
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> letter
|
|
927
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_monom.Monom.html" class="tsd-signature-type
|
|
937
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">letter</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
938
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_monom.Monom.html" class="tsd-signature-type tsd-kind-class">Monom</a><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
|
928
939
|
<ul>
|
|
929
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
930
|
-
<section class="tsd-panel tsd-member
|
|
931
|
-
<h3 class="tsd-anchor-link"><span>multiply</span><a href="#multiply" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
932
|
-
<ul class="tsd-signatures
|
|
933
|
-
<li class="tsd-signature tsd-anchor-link" id="multiply.multiply-1"
|
|
940
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1119">algebra/polynom.ts:1119</a></li></ul></aside></li></ul></section>
|
|
941
|
+
<section class="tsd-panel tsd-member"><a id="multiply" class="tsd-anchor"></a>
|
|
942
|
+
<h3 class="tsd-anchor-link"><span>multiply</span><a href="#multiply" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
943
|
+
<ul class="tsd-signatures">
|
|
944
|
+
<li class="tsd-signature tsd-anchor-link" id="multiply.multiply-1"><span class="tsd-kind-call-signature">multiply</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">value</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#multiply.multiply-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
934
945
|
<li class="tsd-description">
|
|
935
946
|
<div class="tsd-parameters">
|
|
936
947
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
937
948
|
<ul class="tsd-parameter-list">
|
|
938
949
|
<li>
|
|
939
|
-
<h5>value
|
|
940
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
950
|
+
<h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type">unknown</span></h5></li></ul></div>
|
|
951
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4><aside class="tsd-sources">
|
|
941
952
|
<ul>
|
|
942
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
943
|
-
<section class="tsd-panel tsd-member tsd-
|
|
944
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>multiply<wbr/>By<wbr/>Fraction</span><a href="#multiplyByFraction" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
945
|
-
<ul class="tsd-signatures tsd-
|
|
946
|
-
<li class="tsd-signature tsd-anchor-link" id="multiplyByFraction.multiplyByFraction-1">multiply<wbr/>By<wbr/>Fraction
|
|
953
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L437">algebra/polynom.ts:437</a></li></ul></aside></li></ul></section>
|
|
954
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="multiplyByFraction" class="tsd-anchor"></a>
|
|
955
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>multiply<wbr/>By<wbr/>Fraction</span><a href="#multiplyByFraction" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
956
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
957
|
+
<li class="tsd-signature tsd-anchor-link" id="multiplyByFraction.multiplyByFraction-1"><span class="tsd-kind-call-signature">multiply<wbr/>By<wbr/>Fraction</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">F</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#multiplyByFraction.multiplyByFraction-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
947
958
|
<li class="tsd-description">
|
|
948
959
|
<div class="tsd-parameters">
|
|
949
960
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
950
961
|
<ul class="tsd-parameter-list">
|
|
951
962
|
<li>
|
|
952
|
-
<h5>F
|
|
953
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
963
|
+
<h5><span class="tsd-kind-parameter">F</span>: <a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a></h5></li></ul></div>
|
|
964
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4><aside class="tsd-sources">
|
|
954
965
|
<ul>
|
|
955
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
956
|
-
<section class="tsd-panel tsd-member tsd-
|
|
957
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>multiply<wbr/>By<wbr/>Integer</span><a href="#multiplyByInteger" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
958
|
-
<ul class="tsd-signatures tsd-
|
|
959
|
-
<li class="tsd-signature tsd-anchor-link" id="multiplyByInteger.multiplyByInteger-1">multiply<wbr/>By<wbr/>Integer
|
|
966
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1384">algebra/polynom.ts:1384</a></li></ul></aside></li></ul></section>
|
|
967
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="multiplyByInteger" class="tsd-anchor"></a>
|
|
968
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>multiply<wbr/>By<wbr/>Integer</span><a href="#multiplyByInteger" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
969
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
970
|
+
<li class="tsd-signature tsd-anchor-link" id="multiplyByInteger.multiplyByInteger-1"><span class="tsd-kind-call-signature">multiply<wbr/>By<wbr/>Integer</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">nb</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#multiplyByInteger.multiplyByInteger-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
960
971
|
<li class="tsd-description">
|
|
961
972
|
<div class="tsd-parameters">
|
|
962
973
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
963
974
|
<ul class="tsd-parameter-list">
|
|
964
975
|
<li>
|
|
965
|
-
<h5>nb
|
|
966
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
976
|
+
<h5><span class="tsd-kind-parameter">nb</span>: <span class="tsd-signature-type">number</span></h5></li></ul></div>
|
|
977
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4><aside class="tsd-sources">
|
|
967
978
|
<ul>
|
|
968
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
969
|
-
<section class="tsd-panel tsd-member tsd-
|
|
970
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>multiply<wbr/>By<wbr/>Monom</span><a href="#multiplyByMonom" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
971
|
-
<ul class="tsd-signatures tsd-
|
|
972
|
-
<li class="tsd-signature tsd-anchor-link" id="multiplyByMonom.multiplyByMonom-1">multiply<wbr/>By<wbr/>Monom
|
|
979
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1392">algebra/polynom.ts:1392</a></li></ul></aside></li></ul></section>
|
|
980
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="multiplyByMonom" class="tsd-anchor"></a>
|
|
981
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>multiply<wbr/>By<wbr/>Monom</span><a href="#multiplyByMonom" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
982
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
983
|
+
<li class="tsd-signature tsd-anchor-link" id="multiplyByMonom.multiplyByMonom-1"><span class="tsd-kind-call-signature">multiply<wbr/>By<wbr/>Monom</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">M</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#multiplyByMonom.multiplyByMonom-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
973
984
|
<li class="tsd-description">
|
|
974
985
|
<div class="tsd-parameters">
|
|
975
986
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
976
987
|
<ul class="tsd-parameter-list">
|
|
977
988
|
<li>
|
|
978
|
-
<h5>M
|
|
979
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
989
|
+
<h5><span class="tsd-kind-parameter">M</span>: <a href="algebra_monom.Monom.html" class="tsd-signature-type tsd-kind-class">Monom</a></h5></li></ul></div>
|
|
990
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4><aside class="tsd-sources">
|
|
980
991
|
<ul>
|
|
981
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
982
|
-
<section class="tsd-panel tsd-member tsd-
|
|
983
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>multiply<wbr/>By<wbr/>Polynom</span><a href="#multiplyByPolynom" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
984
|
-
<ul class="tsd-signatures tsd-
|
|
985
|
-
<li class="tsd-signature tsd-anchor-link" id="multiplyByPolynom.multiplyByPolynom-1">multiply<wbr/>By<wbr/>Polynom
|
|
992
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1396">algebra/polynom.ts:1396</a></li></ul></aside></li></ul></section>
|
|
993
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="multiplyByPolynom" class="tsd-anchor"></a>
|
|
994
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>multiply<wbr/>By<wbr/>Polynom</span><a href="#multiplyByPolynom" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
995
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
996
|
+
<li class="tsd-signature tsd-anchor-link" id="multiplyByPolynom.multiplyByPolynom-1"><span class="tsd-kind-call-signature">multiply<wbr/>By<wbr/>Polynom</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">P</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#multiplyByPolynom.multiplyByPolynom-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
986
997
|
<li class="tsd-description">
|
|
987
998
|
<div class="tsd-parameters">
|
|
988
999
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
989
1000
|
<ul class="tsd-parameter-list">
|
|
990
1001
|
<li>
|
|
991
|
-
<h5>P
|
|
992
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
1002
|
+
<h5><span class="tsd-kind-parameter">P</span>: <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h5></li></ul></div>
|
|
1003
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4><aside class="tsd-sources">
|
|
993
1004
|
<ul>
|
|
994
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
995
|
-
<section class="tsd-panel tsd-member
|
|
996
|
-
<h3 class="tsd-anchor-link"><span>one</span><a href="#one" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
997
|
-
<ul class="tsd-signatures
|
|
998
|
-
<li class="tsd-signature tsd-anchor-link" id="one.one-1">one
|
|
1005
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1372">algebra/polynom.ts:1372</a></li></ul></aside></li></ul></section>
|
|
1006
|
+
<section class="tsd-panel tsd-member"><a id="one" class="tsd-anchor"></a>
|
|
1007
|
+
<h3 class="tsd-anchor-link"><span>one</span><a href="#one" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
1008
|
+
<ul class="tsd-signatures">
|
|
1009
|
+
<li class="tsd-signature tsd-anchor-link" id="one.one-1"><span class="tsd-kind-call-signature">one</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#one.one-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
999
1010
|
<li class="tsd-description">
|
|
1000
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
1011
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4><aside class="tsd-sources">
|
|
1001
1012
|
<ul>
|
|
1002
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
1003
|
-
<section class="tsd-panel tsd-member
|
|
1004
|
-
<h3 class="tsd-anchor-link"><span>opposed</span><a href="#opposed" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
1005
|
-
<ul class="tsd-signatures
|
|
1006
|
-
<li class="tsd-signature tsd-anchor-link" id="opposed.opposed-1">opposed
|
|
1013
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L374">algebra/polynom.ts:374</a></li></ul></aside></li></ul></section>
|
|
1014
|
+
<section class="tsd-panel tsd-member"><a id="opposed" class="tsd-anchor"></a>
|
|
1015
|
+
<h3 class="tsd-anchor-link"><span>opposed</span><a href="#opposed" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
1016
|
+
<ul class="tsd-signatures">
|
|
1017
|
+
<li class="tsd-signature tsd-anchor-link" id="opposed.opposed-1"><span class="tsd-kind-call-signature">opposed</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#opposed.opposed-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
1007
1018
|
<li class="tsd-description">
|
|
1008
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
1019
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4><aside class="tsd-sources">
|
|
1009
1020
|
<ul>
|
|
1010
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
1011
|
-
<section class="tsd-panel tsd-member
|
|
1012
|
-
<h3 class="tsd-anchor-link"><span>parse</span><a href="#parse" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
1013
|
-
<ul class="tsd-signatures
|
|
1014
|
-
<li class="tsd-signature tsd-anchor-link" id="parse.parse-1"
|
|
1021
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L390">algebra/polynom.ts:390</a></li></ul></aside></li></ul></section>
|
|
1022
|
+
<section class="tsd-panel tsd-member"><a id="parse" class="tsd-anchor"></a>
|
|
1023
|
+
<h3 class="tsd-anchor-link"><span>parse</span><a href="#parse" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
1024
|
+
<ul class="tsd-signatures">
|
|
1025
|
+
<li class="tsd-signature tsd-anchor-link" id="parse.parse-1"><span class="tsd-kind-call-signature">parse</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">inputStr</span>, <span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">values</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#parse.parse-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
1015
1026
|
<li class="tsd-description">
|
|
1016
1027
|
<div class="tsd-comment tsd-typography"><p>Parse a string to a polynom.</p>
|
|
1017
1028
|
</div>
|
|
@@ -1019,63 +1030,67 @@
|
|
|
1019
1030
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1020
1031
|
<ul class="tsd-parameter-list">
|
|
1021
1032
|
<li>
|
|
1022
|
-
<h5>inputStr
|
|
1033
|
+
<h5><span class="tsd-kind-parameter">inputStr</span>: <a href="../types/algebra_polynom.PolynomParsingType.html" class="tsd-signature-type tsd-kind-type-alias">PolynomParsingType</a></h5>
|
|
1034
|
+
<div class="tsd-comment tsd-typography"></div></li>
|
|
1023
1035
|
<li>
|
|
1024
|
-
<h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span>values
|
|
1025
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
1036
|
+
<h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">values</span>: <span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
|
|
1037
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4>
|
|
1038
|
+
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
1026
1039
|
<ul>
|
|
1027
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
1028
|
-
<section class="tsd-panel tsd-member
|
|
1029
|
-
<h3 class="tsd-anchor-link"><span>pow</span><a href="#pow" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
1030
|
-
<ul class="tsd-signatures
|
|
1031
|
-
<li class="tsd-signature tsd-anchor-link" id="pow.pow-1"
|
|
1040
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L318">algebra/polynom.ts:318</a></li></ul></aside></li></ul></section>
|
|
1041
|
+
<section class="tsd-panel tsd-member"><a id="pow" class="tsd-anchor"></a>
|
|
1042
|
+
<h3 class="tsd-anchor-link"><span>pow</span><a href="#pow" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
1043
|
+
<ul class="tsd-signatures">
|
|
1044
|
+
<li class="tsd-signature tsd-anchor-link" id="pow.pow-1"><span class="tsd-kind-call-signature">pow</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">nb</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#pow.pow-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
1032
1045
|
<li class="tsd-description">
|
|
1033
1046
|
<div class="tsd-parameters">
|
|
1034
1047
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1035
1048
|
<ul class="tsd-parameter-list">
|
|
1036
1049
|
<li>
|
|
1037
|
-
<h5>nb
|
|
1038
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
1050
|
+
<h5><span class="tsd-kind-parameter">nb</span>: <span class="tsd-signature-type">number</span></h5></li></ul></div>
|
|
1051
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4><aside class="tsd-sources">
|
|
1039
1052
|
<ul>
|
|
1040
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
1041
|
-
<section class="tsd-panel tsd-member
|
|
1042
|
-
<h3 class="tsd-anchor-link"><span>primitive</span><a href="#primitive" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
1043
|
-
<ul class="tsd-signatures
|
|
1044
|
-
<li class="tsd-signature tsd-anchor-link" id="primitive.primitive-1">primitive
|
|
1053
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L531">algebra/polynom.ts:531</a></li></ul></aside></li></ul></section>
|
|
1054
|
+
<section class="tsd-panel tsd-member"><a id="primitive" class="tsd-anchor"></a>
|
|
1055
|
+
<h3 class="tsd-anchor-link"><span>primitive</span><a href="#primitive" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
1056
|
+
<ul class="tsd-signatures">
|
|
1057
|
+
<li class="tsd-signature tsd-anchor-link" id="primitive.primitive-1"><span class="tsd-kind-call-signature">primitive</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">letter</span><span class="tsd-signature-symbol">?</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#primitive.primitive-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
1045
1058
|
<li class="tsd-description">
|
|
1046
1059
|
<div class="tsd-parameters">
|
|
1047
1060
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1048
1061
|
<ul class="tsd-parameter-list">
|
|
1049
1062
|
<li>
|
|
1050
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> letter
|
|
1051
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
1063
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">letter</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
1064
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4><aside class="tsd-sources">
|
|
1052
1065
|
<ul>
|
|
1053
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
1054
|
-
<section class="tsd-panel tsd-member
|
|
1055
|
-
<h3 class="tsd-anchor-link"><span>reduce</span><a href="#reduce" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
1056
|
-
<ul class="tsd-signatures
|
|
1057
|
-
<li class="tsd-signature tsd-anchor-link" id="reduce.reduce-1">reduce
|
|
1066
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L943">algebra/polynom.ts:943</a></li></ul></aside></li></ul></section>
|
|
1067
|
+
<section class="tsd-panel tsd-member"><a id="reduce" class="tsd-anchor"></a>
|
|
1068
|
+
<h3 class="tsd-anchor-link"><span>reduce</span><a href="#reduce" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
1069
|
+
<ul class="tsd-signatures">
|
|
1070
|
+
<li class="tsd-signature tsd-anchor-link" id="reduce.reduce-1"><span class="tsd-kind-call-signature">reduce</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#reduce.reduce-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
1058
1071
|
<li class="tsd-description">
|
|
1059
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
1072
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4><aside class="tsd-sources">
|
|
1060
1073
|
<ul>
|
|
1061
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
1062
|
-
<section class="tsd-panel tsd-member
|
|
1063
|
-
<h3 class="tsd-anchor-link"><span>reorder</span><a href="#reorder" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
1064
|
-
<ul class="tsd-signatures
|
|
1065
|
-
<li class="tsd-signature tsd-anchor-link" id="reorder.reorder-1">reorder
|
|
1074
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L782">algebra/polynom.ts:782</a></li></ul></aside></li></ul></section>
|
|
1075
|
+
<section class="tsd-panel tsd-member"><a id="reorder" class="tsd-anchor"></a>
|
|
1076
|
+
<h3 class="tsd-anchor-link"><span>reorder</span><a href="#reorder" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
1077
|
+
<ul class="tsd-signatures">
|
|
1078
|
+
<li class="tsd-signature tsd-anchor-link" id="reorder.reorder-1"><span class="tsd-kind-call-signature">reorder</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">letter</span><span class="tsd-signature-symbol">?</span>, <span class="tsd-kind-parameter">revert</span><span class="tsd-signature-symbol">?</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#reorder.reorder-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
1066
1079
|
<li class="tsd-description">
|
|
1067
1080
|
<div class="tsd-parameters">
|
|
1068
1081
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1069
1082
|
<ul class="tsd-parameter-list">
|
|
1070
1083
|
<li>
|
|
1071
|
-
<h5>letter
|
|
1072
|
-
<
|
|
1084
|
+
<h5><span class="tsd-kind-parameter">letter</span>: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = 'x'</span></h5></li>
|
|
1085
|
+
<li>
|
|
1086
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">revert</span>: <span class="tsd-signature-type">boolean</span></h5></li></ul></div>
|
|
1087
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4><aside class="tsd-sources">
|
|
1073
1088
|
<ul>
|
|
1074
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
1075
|
-
<section class="tsd-panel tsd-member
|
|
1076
|
-
<h3 class="tsd-anchor-link"><span>replace<wbr/>By</span><a href="#replaceBy" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
1077
|
-
<ul class="tsd-signatures
|
|
1078
|
-
<li class="tsd-signature tsd-anchor-link" id="replaceBy.replaceBy-1"
|
|
1089
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L833">algebra/polynom.ts:833</a></li></ul></aside></li></ul></section>
|
|
1090
|
+
<section class="tsd-panel tsd-member"><a id="replaceBy" class="tsd-anchor"></a>
|
|
1091
|
+
<h3 class="tsd-anchor-link"><span>replace<wbr/>By</span><a href="#replaceBy" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
1092
|
+
<ul class="tsd-signatures">
|
|
1093
|
+
<li class="tsd-signature tsd-anchor-link" id="replaceBy.replaceBy-1"><span class="tsd-kind-call-signature">replace<wbr/>By</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">letter</span>, <span class="tsd-kind-parameter">P</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#replaceBy.replaceBy-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
1079
1094
|
<li class="tsd-description">
|
|
1080
1095
|
<div class="tsd-comment tsd-typography"><p>Replace a variable (letter) by a polynom.</p>
|
|
1081
1096
|
</div>
|
|
@@ -1083,16 +1098,19 @@
|
|
|
1083
1098
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1084
1099
|
<ul class="tsd-parameter-list">
|
|
1085
1100
|
<li>
|
|
1086
|
-
<h5>letter
|
|
1101
|
+
<h5><span class="tsd-kind-parameter">letter</span>: <span class="tsd-signature-type">string</span></h5>
|
|
1102
|
+
<div class="tsd-comment tsd-typography"></div></li>
|
|
1087
1103
|
<li>
|
|
1088
|
-
<h5>P
|
|
1089
|
-
<
|
|
1104
|
+
<h5><span class="tsd-kind-parameter">P</span>: <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h5>
|
|
1105
|
+
<div class="tsd-comment tsd-typography"></div></li></ul></div>
|
|
1106
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4>
|
|
1107
|
+
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
1090
1108
|
<ul>
|
|
1091
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
1092
|
-
<section class="tsd-panel tsd-member tsd-
|
|
1093
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>shuting<wbr/>Yard<wbr/>To<wbr/>Reduced<wbr/>Polynom</span><a href="#shutingYardToReducedPolynom" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
1094
|
-
<ul class="tsd-signatures tsd-
|
|
1095
|
-
<li class="tsd-signature tsd-anchor-link" id="shutingYardToReducedPolynom.shutingYardToReducedPolynom-1">shuting<wbr/>Yard<wbr/>To<wbr/>Reduced<wbr/>Polynom
|
|
1109
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L887">algebra/polynom.ts:887</a></li></ul></aside></li></ul></section>
|
|
1110
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="shutingYardToReducedPolynom" class="tsd-anchor"></a>
|
|
1111
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>shuting<wbr/>Yard<wbr/>To<wbr/>Reduced<wbr/>Polynom</span><a href="#shutingYardToReducedPolynom" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
1112
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
1113
|
+
<li class="tsd-signature tsd-anchor-link" id="shutingYardToReducedPolynom.shutingYardToReducedPolynom-1"><span class="tsd-kind-call-signature">shuting<wbr/>Yard<wbr/>To<wbr/>Reduced<wbr/>Polynom</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">inputStr</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#shutingYardToReducedPolynom.shutingYardToReducedPolynom-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
1096
1114
|
<li class="tsd-description">
|
|
1097
1115
|
<div class="tsd-comment tsd-typography"><p>Main parse using a shutting yard class</p>
|
|
1098
1116
|
</div>
|
|
@@ -1100,38 +1118,41 @@
|
|
|
1100
1118
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1101
1119
|
<ul class="tsd-parameter-list">
|
|
1102
1120
|
<li>
|
|
1103
|
-
<h5>inputStr
|
|
1104
|
-
<
|
|
1121
|
+
<h5><span class="tsd-kind-parameter">inputStr</span>: <span class="tsd-signature-type">string</span></h5>
|
|
1122
|
+
<div class="tsd-comment tsd-typography"></div></li></ul></div>
|
|
1123
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4>
|
|
1124
|
+
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
1105
1125
|
<ul>
|
|
1106
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
1107
|
-
<section class="tsd-panel tsd-member
|
|
1108
|
-
<h3 class="tsd-anchor-link"><span>subtract</span><a href="#subtract" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
1109
|
-
<ul class="tsd-signatures
|
|
1110
|
-
<li class="tsd-signature tsd-anchor-link" id="subtract.subtract-1"
|
|
1126
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L1349">algebra/polynom.ts:1349</a></li></ul></aside></li></ul></section>
|
|
1127
|
+
<section class="tsd-panel tsd-member"><a id="subtract" class="tsd-anchor"></a>
|
|
1128
|
+
<h3 class="tsd-anchor-link"><span>subtract</span><a href="#subtract" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
1129
|
+
<ul class="tsd-signatures">
|
|
1130
|
+
<li class="tsd-signature tsd-anchor-link" id="subtract.subtract-1"><span class="tsd-kind-call-signature">subtract</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">values</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#subtract.subtract-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
1111
1131
|
<li class="tsd-description">
|
|
1112
1132
|
<div class="tsd-parameters">
|
|
1113
1133
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
1114
1134
|
<ul class="tsd-parameter-list">
|
|
1115
1135
|
<li>
|
|
1116
|
-
<h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span>values
|
|
1117
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
1136
|
+
<h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">values</span>: <span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
|
|
1137
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4><aside class="tsd-sources">
|
|
1118
1138
|
<ul>
|
|
1119
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
1120
|
-
<section class="tsd-panel tsd-member
|
|
1121
|
-
<h3 class="tsd-anchor-link"><span>zero</span><a href="#zero" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
1122
|
-
<ul class="tsd-signatures
|
|
1123
|
-
<li class="tsd-signature tsd-anchor-link" id="zero.zero-1">zero
|
|
1139
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L419">algebra/polynom.ts:419</a></li></ul></aside></li></ul></section>
|
|
1140
|
+
<section class="tsd-panel tsd-member"><a id="zero" class="tsd-anchor"></a>
|
|
1141
|
+
<h3 class="tsd-anchor-link"><span>zero</span><a href="#zero" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
1142
|
+
<ul class="tsd-signatures">
|
|
1143
|
+
<li class="tsd-signature tsd-anchor-link" id="zero.zero-1"><span class="tsd-kind-call-signature">zero</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a><a href="#zero.zero-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
1124
1144
|
<li class="tsd-description">
|
|
1125
1145
|
<div class="tsd-comment tsd-typography"><p>Set the polynom to zero.</p>
|
|
1126
|
-
|
|
1127
|
-
<
|
|
1128
|
-
<
|
|
1146
|
+
</div>
|
|
1147
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h4>
|
|
1148
|
+
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
1129
1149
|
<ul>
|
|
1130
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
1131
|
-
<div class="col-
|
|
1150
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/polynom.ts#L366">algebra/polynom.ts:366</a></li></ul></aside></li></ul></section></section></div>
|
|
1151
|
+
<div class="col-sidebar">
|
|
1152
|
+
<div class="page-menu">
|
|
1132
1153
|
<div class="tsd-navigation settings">
|
|
1133
1154
|
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
|
|
1134
|
-
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg>
|
|
1155
|
+
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)" id="icon-chevronDown"></path></svg>Settings</h3></summary>
|
|
1135
1156
|
<div class="tsd-accordion-details">
|
|
1136
1157
|
<div class="tsd-filter-visibility">
|
|
1137
1158
|
<h4 class="uppercase">Member Visibility</h4><form>
|
|
@@ -1141,120 +1162,120 @@
|
|
|
1141
1162
|
<li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li>
|
|
1142
1163
|
<li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div>
|
|
1143
1164
|
<div class="tsd-theme-toggle">
|
|
1144
|
-
<h4 class="uppercase">Theme</h4><select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div>
|
|
1145
|
-
<
|
|
1146
|
-
<
|
|
1147
|
-
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
|
1165
|
+
<h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div>
|
|
1166
|
+
<details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary">
|
|
1167
|
+
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="#icon-chevronDown"></use></svg>On This Page</h3></summary>
|
|
1148
1168
|
<div class="tsd-accordion-details">
|
|
1149
1169
|
<ul>
|
|
1150
|
-
<li class="
|
|
1151
|
-
<
|
|
1152
|
-
<li class="tsd-kind-
|
|
1153
|
-
<li class="
|
|
1154
|
-
<li class="tsd-kind-
|
|
1155
|
-
<li class="tsd-kind-
|
|
1156
|
-
<li class="tsd-kind-
|
|
1157
|
-
<li class="tsd-kind-
|
|
1158
|
-
<li class="tsd-kind-
|
|
1159
|
-
<li class="
|
|
1160
|
-
<li class="tsd-kind-
|
|
1161
|
-
<li class="tsd-kind-
|
|
1162
|
-
<li class="tsd-kind-
|
|
1163
|
-
<li class="tsd-kind-
|
|
1164
|
-
<li class="tsd-kind-
|
|
1165
|
-
<li class="tsd-kind-
|
|
1166
|
-
<li class="tsd-kind-
|
|
1167
|
-
<li class="tsd-kind-
|
|
1168
|
-
<
|
|
1169
|
-
<
|
|
1170
|
-
<li
|
|
1171
|
-
<
|
|
1172
|
-
<li
|
|
1173
|
-
<li
|
|
1174
|
-
<li
|
|
1175
|
-
<li
|
|
1176
|
-
<li
|
|
1177
|
-
<li
|
|
1178
|
-
<li
|
|
1179
|
-
<li
|
|
1180
|
-
<li
|
|
1181
|
-
<li
|
|
1182
|
-
<li
|
|
1183
|
-
<li
|
|
1184
|
-
<li
|
|
1185
|
-
<li
|
|
1186
|
-
<li
|
|
1187
|
-
<li
|
|
1188
|
-
<li
|
|
1189
|
-
<li
|
|
1190
|
-
<li
|
|
1191
|
-
<li
|
|
1192
|
-
<li
|
|
1193
|
-
<li
|
|
1194
|
-
<li
|
|
1195
|
-
<li
|
|
1196
|
-
<li
|
|
1197
|
-
<li
|
|
1198
|
-
<li
|
|
1199
|
-
<li
|
|
1200
|
-
<li
|
|
1201
|
-
<li
|
|
1202
|
-
<li
|
|
1203
|
-
<li
|
|
1204
|
-
<li
|
|
1205
|
-
<li
|
|
1206
|
-
<li
|
|
1207
|
-
<li
|
|
1208
|
-
<li
|
|
1209
|
-
<li
|
|
1210
|
-
<li
|
|
1211
|
-
<li
|
|
1212
|
-
<li
|
|
1213
|
-
<li
|
|
1214
|
-
<li
|
|
1215
|
-
<li
|
|
1216
|
-
<li
|
|
1217
|
-
<li
|
|
1218
|
-
<li
|
|
1219
|
-
<li
|
|
1220
|
-
<li
|
|
1221
|
-
<li
|
|
1222
|
-
<li
|
|
1223
|
-
<li
|
|
1224
|
-
<li
|
|
1225
|
-
<li
|
|
1226
|
-
<li
|
|
1227
|
-
<li
|
|
1228
|
-
<li
|
|
1229
|
-
<li
|
|
1230
|
-
<li
|
|
1231
|
-
<li
|
|
1232
|
-
<li
|
|
1233
|
-
<li
|
|
1234
|
-
<li
|
|
1235
|
-
<li
|
|
1236
|
-
<
|
|
1237
|
-
<
|
|
1238
|
-
<
|
|
1239
|
-
<li
|
|
1240
|
-
<li
|
|
1241
|
-
<li
|
|
1242
|
-
<li
|
|
1243
|
-
<li
|
|
1244
|
-
<li
|
|
1245
|
-
<li
|
|
1246
|
-
<li
|
|
1247
|
-
<
|
|
1248
|
-
<
|
|
1249
|
-
<
|
|
1250
|
-
<li
|
|
1251
|
-
<li
|
|
1252
|
-
<li
|
|
1253
|
-
<li
|
|
1254
|
-
<li
|
|
1255
|
-
<li
|
|
1256
|
-
<li
|
|
1257
|
-
<li
|
|
1258
|
-
<
|
|
1170
|
+
<li><a href="#constructor" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-512"></use></svg><span>constructor</span></a></li>
|
|
1171
|
+
<li><a href="#_dirty_factors" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_dirty_<wbr/>factors</span></a></li>
|
|
1172
|
+
<li><a href="#_dirty_zeroes" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_dirty_<wbr/>zeroes</span></a></li>
|
|
1173
|
+
<li><a href="#_euclidianCache" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_euclidian<wbr/>Cache</span></a></li>
|
|
1174
|
+
<li><a href="#_factors" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_factors</span></a></li>
|
|
1175
|
+
<li><a href="#_monoms" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_monoms</span></a></li>
|
|
1176
|
+
<li><a href="#_rawString" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_raw<wbr/>String</span></a></li>
|
|
1177
|
+
<li><a href="#_texString" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_tex<wbr/>String</span></a></li>
|
|
1178
|
+
<li><a href="#_zeroes" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_zeroes</span></a></li>
|
|
1179
|
+
<li><a href="#dirty_factors" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>dirty_<wbr/>factors</span></a></li>
|
|
1180
|
+
<li><a href="#dirty_zeroes" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>dirty_<wbr/>zeroes</span></a></li>
|
|
1181
|
+
<li><a href="#display" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>display</span></a></li>
|
|
1182
|
+
<li><a href="#displayFactors" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>display<wbr/>Factors</span></a></li>
|
|
1183
|
+
<li><a href="#euclidianCache" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>euclidian<wbr/>Cache</span></a></li>
|
|
1184
|
+
<li><a href="#factors" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>factors</span></a></li>
|
|
1185
|
+
<li><a href="#isMultiVariable" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>is<wbr/>Multi<wbr/>Variable</span></a></li>
|
|
1186
|
+
<li><a href="#length" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>length</span></a></li>
|
|
1187
|
+
<li><a href="#monoms" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>monoms</span></a></li>
|
|
1188
|
+
<li><a href="#numberOfVars" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>number<wbr/>Of<wbr/>Vars</span></a></li>
|
|
1189
|
+
<li><a href="#plotFunction" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>plot<wbr/>Function</span></a></li>
|
|
1190
|
+
<li><a href="#raw" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>raw</span></a></li>
|
|
1191
|
+
<li><a href="#tex" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>tex</span></a></li>
|
|
1192
|
+
<li><a href="#texFactors" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>tex<wbr/>Factors</span></a></li>
|
|
1193
|
+
<li><a href="#texString" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>tex<wbr/>String</span></a></li>
|
|
1194
|
+
<li><a href="#variables" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>variables</span></a></li>
|
|
1195
|
+
<li><a href="#zeroes" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>zeroes</span></a></li>
|
|
1196
|
+
<li><a href="#_factorize2ndDegree" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>_factorize2nd<wbr/>Degree</span></a></li>
|
|
1197
|
+
<li><a href="#_factorizeByGroups" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>_factorize<wbr/>By<wbr/>Groups</span></a></li>
|
|
1198
|
+
<li><a href="#_getAllPotentialFactors" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>_get<wbr/>All<wbr/>Potential<wbr/>Factors</span></a></li>
|
|
1199
|
+
<li><a href="#_parseString" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>_parse<wbr/>String</span></a></li>
|
|
1200
|
+
<li><a href="#add" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>add</span></a></li>
|
|
1201
|
+
<li><a href="#addToken" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>add<wbr/>Token</span></a></li>
|
|
1202
|
+
<li><a href="#clone" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>clone</span></a></li>
|
|
1203
|
+
<li><a href="#commonMonom" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>common<wbr/>Monom</span></a></li>
|
|
1204
|
+
<li><a href="#compare" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>compare</span></a></li>
|
|
1205
|
+
<li><a href="#degree" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>degree</span></a></li>
|
|
1206
|
+
<li><a href="#derivative" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>derivative</span></a></li>
|
|
1207
|
+
<li><a href="#divide" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>divide</span></a></li>
|
|
1208
|
+
<li><a href="#divideByFraction" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>divide<wbr/>By<wbr/>Fraction</span></a></li>
|
|
1209
|
+
<li><a href="#divideByInteger" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>divide<wbr/>By<wbr/>Integer</span></a></li>
|
|
1210
|
+
<li><a href="#empty" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>empty</span></a></li>
|
|
1211
|
+
<li><a href="#euclidian" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>euclidian</span></a></li>
|
|
1212
|
+
<li><a href="#evaluate" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>evaluate</span></a></li>
|
|
1213
|
+
<li><a href="#evaluateAsNumeric" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>evaluate<wbr/>As<wbr/>Numeric</span></a></li>
|
|
1214
|
+
<li><a href="#factorize" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>factorize</span></a></li>
|
|
1215
|
+
<li><a href="#gcdDenominator" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>gcd<wbr/>Denominator</span></a></li>
|
|
1216
|
+
<li><a href="#gcdNumerator" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>gcd<wbr/>Numerator</span></a></li>
|
|
1217
|
+
<li><a href="#genDisplay" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>gen<wbr/>Display</span></a></li>
|
|
1218
|
+
<li><a href="#getDenominators" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>get<wbr/>Denominators</span></a></li>
|
|
1219
|
+
<li><a href="#getNumerators" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>get<wbr/>Numerators</span></a></li>
|
|
1220
|
+
<li><a href="#getZeroes" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>get<wbr/>Zeroes</span></a></li>
|
|
1221
|
+
<li><a href="#integrate" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>integrate</span></a></li>
|
|
1222
|
+
<li><a href="#isDeveloped" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Developed</span></a></li>
|
|
1223
|
+
<li><a href="#isDividableBy" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Dividable<wbr/>By</span></a></li>
|
|
1224
|
+
<li><a href="#isEqual" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Equal</span></a></li>
|
|
1225
|
+
<li><a href="#isFactorized" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Factorized</span></a></li>
|
|
1226
|
+
<li><a href="#isOne" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>One</span></a></li>
|
|
1227
|
+
<li><a href="#isOpposedAt" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Opposed<wbr/>At</span></a></li>
|
|
1228
|
+
<li><a href="#isReduced" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Reduced</span></a></li>
|
|
1229
|
+
<li><a href="#isSameAs" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Same<wbr/>As</span></a></li>
|
|
1230
|
+
<li><a href="#isZero" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Zero</span></a></li>
|
|
1231
|
+
<li><a href="#lcmDenominator" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>lcm<wbr/>Denominator</span></a></li>
|
|
1232
|
+
<li><a href="#lcmNumerator" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>lcm<wbr/>Numerator</span></a></li>
|
|
1233
|
+
<li><a href="#letters" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>letters</span></a></li>
|
|
1234
|
+
<li><a href="#limitToInfinity" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>limit<wbr/>To<wbr/>Infinity</span></a></li>
|
|
1235
|
+
<li><a href="#limitToNegativeInfinity" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>limit<wbr/>To<wbr/>Negative<wbr/>Infinity</span></a></li>
|
|
1236
|
+
<li><a href="#mark_as_dirty" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>mark_<wbr/>as_<wbr/>dirty</span></a></li>
|
|
1237
|
+
<li><a href="#monomByDegree" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>monom<wbr/>By<wbr/>Degree</span></a></li>
|
|
1238
|
+
<li><a href="#monomByLetter" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>monom<wbr/>By<wbr/>Letter</span></a></li>
|
|
1239
|
+
<li><a href="#monomsByDegree" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>monoms<wbr/>By<wbr/>Degree</span></a></li>
|
|
1240
|
+
<li><a href="#multiply" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>multiply</span></a></li>
|
|
1241
|
+
<li><a href="#multiplyByFraction" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>multiply<wbr/>By<wbr/>Fraction</span></a></li>
|
|
1242
|
+
<li><a href="#multiplyByInteger" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>multiply<wbr/>By<wbr/>Integer</span></a></li>
|
|
1243
|
+
<li><a href="#multiplyByMonom" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>multiply<wbr/>By<wbr/>Monom</span></a></li>
|
|
1244
|
+
<li><a href="#multiplyByPolynom" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>multiply<wbr/>By<wbr/>Polynom</span></a></li>
|
|
1245
|
+
<li><a href="#one" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>one</span></a></li>
|
|
1246
|
+
<li><a href="#opposed" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>opposed</span></a></li>
|
|
1247
|
+
<li><a href="#parse" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>parse</span></a></li>
|
|
1248
|
+
<li><a href="#pow" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>pow</span></a></li>
|
|
1249
|
+
<li><a href="#primitive" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>primitive</span></a></li>
|
|
1250
|
+
<li><a href="#reduce" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>reduce</span></a></li>
|
|
1251
|
+
<li><a href="#reorder" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>reorder</span></a></li>
|
|
1252
|
+
<li><a href="#replaceBy" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>replace<wbr/>By</span></a></li>
|
|
1253
|
+
<li><a href="#shutingYardToReducedPolynom" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>shuting<wbr/>Yard<wbr/>To<wbr/>Reduced<wbr/>Polynom</span></a></li>
|
|
1254
|
+
<li><a href="#subtract" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>subtract</span></a></li>
|
|
1255
|
+
<li><a href="#zero" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>zero</span></a></li></ul></div></details></div>
|
|
1256
|
+
<div class="site-menu">
|
|
1257
|
+
<nav class="tsd-navigation"><a href="../index.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>pimath</span></a>
|
|
1258
|
+
<ul class="tsd-small-nested-navigation">
|
|
1259
|
+
<li><a href="../modules/Logicalset.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Logicalset</span></a></li>
|
|
1260
|
+
<li><a href="../modules/Polynom.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Polynom</span></a></li>
|
|
1261
|
+
<li><a href="../modules/Vector.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Vector</span></a></li>
|
|
1262
|
+
<li><a href="../modules/Vector-1.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>Vector</span></a></li>
|
|
1263
|
+
<li><a href="../modules/algebra_equation.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>algebra/equation</span></a></li>
|
|
1264
|
+
<li><a href="../modules/algebra_linearSystem.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>algebra/linear<wbr/>System</span></a></li>
|
|
1265
|
+
<li><a href="../modules/algebra_monom.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>algebra/monom</span></a></li>
|
|
1266
|
+
<li>
|
|
1267
|
+
<details class="tsd-index-accordion" open data-key="algebra/polynom"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="#icon-chevronDown"></use></svg><a href="../modules/algebra_polynom.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>algebra/polynom</span></a></summary>
|
|
1268
|
+
<div class="tsd-accordion-details">
|
|
1269
|
+
<ul class="tsd-nested-navigation">
|
|
1270
|
+
<li><a href="algebra_polynom.Polynom.html" class="current"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-128"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-class)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M11.898 16.1201C11.098 16.1201 10.466 15.8961 10.002 15.4481C9.53803 15.0001 9.30603 14.3841 9.30603 13.6001V9.64012C9.30603 8.85612 9.53803 8.24012 10.002 7.79212C10.466 7.34412 11.098 7.12012 11.898 7.12012C12.682 7.12012 13.306 7.34812 13.77 7.80412C14.234 8.25212 14.466 8.86412 14.466 9.64012H13.386C13.386 9.14412 13.254 8.76412 12.99 8.50012C12.734 8.22812 12.37 8.09212 11.898 8.09212C11.426 8.09212 11.054 8.22412 10.782 8.48812C10.518 8.75212 10.386 9.13212 10.386 9.62812V13.6001C10.386 14.0961 10.518 14.4801 10.782 14.7521C11.054 15.0161 11.426 15.1481 11.898 15.1481C12.37 15.1481 12.734 15.0161 12.99 14.7521C13.254 14.4801 13.386 14.0961 13.386 13.6001H14.466C14.466 14.3761 14.234 14.9921 13.77 15.4481C13.306 15.8961 12.682 16.1201 11.898 16.1201Z" fill="var(--color-text)"></path></g></svg><span>Polynom</span></a></li>
|
|
1271
|
+
<li><a href="../interfaces/algebra_polynom.IEuclidian.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-256"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)"></path></g></svg><span>IEuclidian</span></a></li>
|
|
1272
|
+
<li><a href="../types/algebra_polynom.PolynomParsingType.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4194304"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-type-alias)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)"></path></g></svg><span>Polynom<wbr/>Parsing<wbr/>Type</span></a></li></ul></div></details></li>
|
|
1273
|
+
<li><a href="../modules/coefficients_fraction.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>coefficients/fraction</span></a></li>
|
|
1274
|
+
<li><a href="../modules/geometry_circle.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>geometry/circle</span></a></li>
|
|
1275
|
+
<li><a href="../modules/geometry_line.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>geometry/line</span></a></li>
|
|
1276
|
+
<li><a href="../modules/geometry_triangle.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>geometry/triangle</span></a></li>
|
|
1277
|
+
<li><a href="../modules/numeric.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>numeric</span></a></li>
|
|
1278
|
+
<li><a href="../modules/shutingyard.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>shutingyard</span></a></li></ul></nav></div></div></div>
|
|
1279
|
+
<div class="tsd-generator">
|
|
1259
1280
|
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
|
|
1260
|
-
<div class="overlay"></div
|
|
1281
|
+
<div class="overlay"></div></body></html>
|