pimath 0.0.120 → 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 -7840
- 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 -180
- 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/{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>Equation | 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>Equation | 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,10 +9,10 @@
|
|
|
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_equation.html">algebra/equation</a></li>
|
|
17
17
|
<li><a href="algebra_equation.Equation.html">Equation</a></li></ul>
|
|
18
18
|
<h1>Class Equation</h1></div>
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
<ul class="tsd-hierarchy">
|
|
22
22
|
<li><span class="target">Equation</span></li></ul></section><aside class="tsd-sources">
|
|
23
23
|
<ul>
|
|
24
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
24
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L22">algebra/equation.ts:22</a></li></ul></aside>
|
|
25
25
|
<section class="tsd-panel-group tsd-index-group">
|
|
26
26
|
<section class="tsd-panel tsd-index-panel">
|
|
27
27
|
<details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
|
|
@@ -29,73 +29,75 @@
|
|
|
29
29
|
<div class="tsd-accordion-details">
|
|
30
30
|
<section class="tsd-index-section">
|
|
31
31
|
<h3 class="tsd-index-heading">Constructors</h3>
|
|
32
|
-
<div class="tsd-index-list"><a href="algebra_equation.Equation.html#constructor" class="tsd-index-link
|
|
32
|
+
<div class="tsd-index-list"><a href="algebra_equation.Equation.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>
|
|
33
33
|
</div></section>
|
|
34
34
|
<section class="tsd-index-section">
|
|
35
35
|
<h3 class="tsd-index-heading">Properties</h3>
|
|
36
|
-
<div class="tsd-index-list"><a href="algebra_equation.Equation.html#_left" class="tsd-index-link tsd-
|
|
37
|
-
<a href="algebra_equation.Equation.html#_polynom" class="tsd-index-link tsd-
|
|
38
|
-
<a href="algebra_equation.Equation.html#_randomizeDefaults" class="tsd-index-link tsd-
|
|
39
|
-
<a href="algebra_equation.Equation.html#_real" class="tsd-index-link tsd-
|
|
40
|
-
<a href="algebra_equation.Equation.html#_right" class="tsd-index-link tsd-
|
|
41
|
-
<a href="algebra_equation.Equation.html#_sign" class="tsd-index-link tsd-
|
|
42
|
-
<a href="algebra_equation.Equation.html#_solutions" class="tsd-index-link tsd-
|
|
43
|
-
<a href="algebra_equation.Equation.html#_varnothing" class="tsd-index-link tsd-
|
|
36
|
+
<div class="tsd-index-list"><a href="algebra_equation.Equation.html#_left" 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>_left</span></a>
|
|
37
|
+
<a href="algebra_equation.Equation.html#_polynom" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_polynom</span></a>
|
|
38
|
+
<a href="algebra_equation.Equation.html#_randomizeDefaults" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_randomize<wbr/>Defaults</span></a>
|
|
39
|
+
<a href="algebra_equation.Equation.html#_real" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_real</span></a>
|
|
40
|
+
<a href="algebra_equation.Equation.html#_right" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_right</span></a>
|
|
41
|
+
<a href="algebra_equation.Equation.html#_sign" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_sign</span></a>
|
|
42
|
+
<a href="algebra_equation.Equation.html#_solutions" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_solutions</span></a>
|
|
43
|
+
<a href="algebra_equation.Equation.html#_varnothing" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_varnothing</span></a>
|
|
44
44
|
</div></section>
|
|
45
45
|
<section class="tsd-index-section">
|
|
46
46
|
<h3 class="tsd-index-heading">Accessors</h3>
|
|
47
|
-
<div class="tsd-index-list"><a href="algebra_equation.Equation.html#display" class="tsd-index-link
|
|
48
|
-
<a href="algebra_equation.Equation.html#isEquation" class="tsd-index-link
|
|
49
|
-
<a href="algebra_equation.Equation.html#isReal" class="tsd-index-link
|
|
50
|
-
<a href="algebra_equation.Equation.html#isVarnothing" class="tsd-index-link
|
|
51
|
-
<a href="algebra_equation.Equation.html#left" class="tsd-index-link
|
|
52
|
-
<a href="algebra_equation.Equation.html#numberOfVars" class="tsd-index-link
|
|
53
|
-
<a href="algebra_equation.Equation.html#randomizeDefaults" class="tsd-index-link
|
|
54
|
-
<a href="algebra_equation.Equation.html#raw" class="tsd-index-link
|
|
55
|
-
<a href="algebra_equation.Equation.html#right" class="tsd-index-link
|
|
56
|
-
<a href="algebra_equation.Equation.html#sign" class="tsd-index-link
|
|
57
|
-
<a href="algebra_equation.Equation.html#signAsTex" class="tsd-index-link
|
|
58
|
-
<a href="algebra_equation.Equation.html#solution" class="tsd-index-link
|
|
59
|
-
<a href="algebra_equation.Equation.html#solutions" class="tsd-index-link
|
|
60
|
-
<a href="algebra_equation.Equation.html#tex" class="tsd-index-link
|
|
61
|
-
<a href="algebra_equation.Equation.html#variables" class="tsd-index-link
|
|
47
|
+
<div class="tsd-index-list"><a href="algebra_equation.Equation.html#display" 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>display</span></a>
|
|
48
|
+
<a href="algebra_equation.Equation.html#isEquation" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>is<wbr/>Equation</span></a>
|
|
49
|
+
<a href="algebra_equation.Equation.html#isReal" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>is<wbr/>Real</span></a>
|
|
50
|
+
<a href="algebra_equation.Equation.html#isVarnothing" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>is<wbr/>Varnothing</span></a>
|
|
51
|
+
<a href="algebra_equation.Equation.html#left" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>left</span></a>
|
|
52
|
+
<a href="algebra_equation.Equation.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>
|
|
53
|
+
<a href="algebra_equation.Equation.html#randomizeDefaults" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>randomize<wbr/>Defaults</span></a>
|
|
54
|
+
<a href="algebra_equation.Equation.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>
|
|
55
|
+
<a href="algebra_equation.Equation.html#right" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>right</span></a>
|
|
56
|
+
<a href="algebra_equation.Equation.html#sign" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>sign</span></a>
|
|
57
|
+
<a href="algebra_equation.Equation.html#signAsTex" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>sign<wbr/>As<wbr/>Tex</span></a>
|
|
58
|
+
<a href="algebra_equation.Equation.html#solution" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>solution</span></a>
|
|
59
|
+
<a href="algebra_equation.Equation.html#solutions" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>solutions</span></a>
|
|
60
|
+
<a href="algebra_equation.Equation.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>
|
|
61
|
+
<a href="algebra_equation.Equation.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>
|
|
62
62
|
</div></section>
|
|
63
63
|
<section class="tsd-index-section">
|
|
64
64
|
<h3 class="tsd-index-heading">Methods</h3>
|
|
65
|
-
<div class="tsd-index-list"><a href="algebra_equation.Equation.html#_findSign" class="tsd-index-link tsd-
|
|
66
|
-
<a href="algebra_equation.Equation.html#_formatSign" class="tsd-index-link tsd-
|
|
67
|
-
<a href="algebra_equation.Equation.html#_reverseSign" class="tsd-index-link tsd-
|
|
68
|
-
<a href="algebra_equation.Equation.html#_solveDegree1" class="tsd-index-link tsd-
|
|
69
|
-
<a href="algebra_equation.Equation.html#_solveDegree2" class="tsd-index-link tsd-
|
|
70
|
-
<a href="algebra_equation.Equation.html#_solveDegree3plus" class="tsd-index-link tsd-
|
|
71
|
-
<a href="algebra_equation.Equation.html#clone" class="tsd-index-link
|
|
72
|
-
<a href="algebra_equation.Equation.html#create" class="tsd-index-link
|
|
73
|
-
<a href="algebra_equation.Equation.html#degree" class="tsd-index-link
|
|
74
|
-
<a href="algebra_equation.Equation.html#divide" class="tsd-index-link
|
|
75
|
-
<a href="algebra_equation.Equation.html#hasVariable" class="tsd-index-link
|
|
76
|
-
<a href="algebra_equation.Equation.html#isAlsoEqual" class="tsd-index-link tsd-
|
|
77
|
-
<a href="algebra_equation.Equation.html#isGreater" class="tsd-index-link tsd-
|
|
78
|
-
<a href="algebra_equation.Equation.html#
|
|
79
|
-
<a href="algebra_equation.Equation.html#
|
|
80
|
-
<a href="algebra_equation.Equation.html#
|
|
81
|
-
<a href="algebra_equation.Equation.html#
|
|
82
|
-
<a href="algebra_equation.Equation.html#
|
|
83
|
-
<a href="algebra_equation.Equation.html#
|
|
84
|
-
<a href="algebra_equation.Equation.html#
|
|
85
|
-
<a href="algebra_equation.Equation.html#
|
|
86
|
-
<a href="algebra_equation.Equation.html#
|
|
87
|
-
<a href="algebra_equation.Equation.html#
|
|
88
|
-
<a href="algebra_equation.Equation.html#
|
|
89
|
-
<a href="algebra_equation.Equation.html#
|
|
90
|
-
<a href="algebra_equation.Equation.html#
|
|
91
|
-
<a href="algebra_equation.Equation.html#
|
|
65
|
+
<div class="tsd-index-list"><a href="algebra_equation.Equation.html#_findSign" 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>_find<wbr/>Sign</span></a>
|
|
66
|
+
<a href="algebra_equation.Equation.html#_formatSign" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>_format<wbr/>Sign</span></a>
|
|
67
|
+
<a href="algebra_equation.Equation.html#_reverseSign" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>_reverse<wbr/>Sign</span></a>
|
|
68
|
+
<a href="algebra_equation.Equation.html#_solveDegree1" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>_solve<wbr/>Degree1</span></a>
|
|
69
|
+
<a href="algebra_equation.Equation.html#_solveDegree2" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>_solve<wbr/>Degree2</span></a>
|
|
70
|
+
<a href="algebra_equation.Equation.html#_solveDegree3plus" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>_solve<wbr/>Degree3plus</span></a>
|
|
71
|
+
<a href="algebra_equation.Equation.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>
|
|
72
|
+
<a href="algebra_equation.Equation.html#create" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>create</span></a>
|
|
73
|
+
<a href="algebra_equation.Equation.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>
|
|
74
|
+
<a href="algebra_equation.Equation.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>
|
|
75
|
+
<a href="algebra_equation.Equation.html#hasVariable" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>has<wbr/>Variable</span></a>
|
|
76
|
+
<a href="algebra_equation.Equation.html#isAlsoEqual" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Also<wbr/>Equal</span></a>
|
|
77
|
+
<a href="algebra_equation.Equation.html#isGreater" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Greater</span></a>
|
|
78
|
+
<a href="algebra_equation.Equation.html#isLinearTo" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Linear<wbr/>To</span></a>
|
|
79
|
+
<a href="algebra_equation.Equation.html#isMultiVariable" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Multi<wbr/>Variable</span></a>
|
|
80
|
+
<a href="algebra_equation.Equation.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>
|
|
81
|
+
<a href="algebra_equation.Equation.html#isStrictEqual" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Strict<wbr/>Equal</span></a>
|
|
82
|
+
<a href="algebra_equation.Equation.html#isolate" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>isolate</span></a>
|
|
83
|
+
<a href="algebra_equation.Equation.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>
|
|
84
|
+
<a href="algebra_equation.Equation.html#moveLeft" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>move<wbr/>Left</span></a>
|
|
85
|
+
<a href="algebra_equation.Equation.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>
|
|
86
|
+
<a href="algebra_equation.Equation.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>
|
|
87
|
+
<a href="algebra_equation.Equation.html#randomize" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>randomize</span></a>
|
|
88
|
+
<a href="algebra_equation.Equation.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>
|
|
89
|
+
<a href="algebra_equation.Equation.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>
|
|
90
|
+
<a href="algebra_equation.Equation.html#simplify" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>simplify</span></a>
|
|
91
|
+
<a href="algebra_equation.Equation.html#solve" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>solve</span></a>
|
|
92
|
+
<a href="algebra_equation.Equation.html#test" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>test</span></a>
|
|
93
|
+
<a href="algebra_equation.Equation.html#makeSolutionsUnique" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>make<wbr/>Solutions<wbr/>Unique</span></a>
|
|
92
94
|
</div></section></div></details></section></section>
|
|
93
95
|
<section class="tsd-panel-group tsd-member-group">
|
|
94
96
|
<h2>Constructors</h2>
|
|
95
|
-
<section class="tsd-panel tsd-member
|
|
96
|
-
<h3 class="tsd-anchor-link"><span>constructor</span><a href="#constructor" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
97
|
-
<ul class="tsd-signatures
|
|
98
|
-
<li class="tsd-signature tsd-anchor-link" id="constructor.new_Equation"
|
|
97
|
+
<section class="tsd-panel tsd-member"><a id="constructor" class="tsd-anchor"></a>
|
|
98
|
+
<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>
|
|
99
|
+
<ul class="tsd-signatures">
|
|
100
|
+
<li class="tsd-signature tsd-anchor-link" id="constructor.new_Equation"><span class="tsd-kind-constructor-signature">new <wbr/>Equation</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">equations</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a><a href="#constructor.new_Equation" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
99
101
|
<li class="tsd-description">
|
|
100
102
|
<div class="tsd-comment tsd-typography"><p>Create an Equation using two polynoms.
|
|
101
103
|
Markdown <em>support</em> is cool</p>
|
|
@@ -104,329 +106,331 @@ Markdown <em>support</em> is cool</p>
|
|
|
104
106
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
105
107
|
<ul class="tsd-parameter-list">
|
|
106
108
|
<li>
|
|
107
|
-
<h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span>equations
|
|
108
|
-
<
|
|
109
|
+
<h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">equations</span>: <span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">[]</span></h5>
|
|
110
|
+
<div class="tsd-comment tsd-typography"></div></li></ul></div>
|
|
111
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a></h4>
|
|
112
|
+
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
109
113
|
<ul>
|
|
110
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
114
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L34">algebra/equation.ts:34</a></li></ul></aside></li></ul></section></section>
|
|
111
115
|
<section class="tsd-panel-group tsd-member-group">
|
|
112
116
|
<h2>Properties</h2>
|
|
113
|
-
<section class="tsd-panel tsd-member tsd-
|
|
114
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_left</span><a href="#_left" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
115
|
-
<div class="tsd-signature">_left
|
|
116
|
-
<ul>
|
|
117
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
118
|
-
<section class="tsd-panel tsd-member tsd-
|
|
119
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_polynom</span><a href="#_polynom" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
120
|
-
<div class="tsd-signature">_polynom
|
|
121
|
-
<ul>
|
|
122
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
123
|
-
<section class="tsd-panel tsd-member tsd-
|
|
124
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_randomize<wbr/>Defaults</span><a href="#_randomizeDefaults" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
125
|
-
<div class="tsd-signature">_randomize<wbr/>Defaults
|
|
117
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_left" class="tsd-anchor"></a>
|
|
118
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_left</span><a href="#_left" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
119
|
+
<div class="tsd-signature"><span class="tsd-kind-property">_left</span><span class="tsd-signature-symbol">:</span> <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></div><aside class="tsd-sources">
|
|
120
|
+
<ul>
|
|
121
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L66">algebra/equation.ts:66</a></li></ul></aside></section>
|
|
122
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_polynom" class="tsd-anchor"></a>
|
|
123
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_polynom</span><a href="#_polynom" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
124
|
+
<div class="tsd-signature"><span class="tsd-kind-property">_polynom</span><span class="tsd-signature-symbol">:</span> <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></div><aside class="tsd-sources">
|
|
125
|
+
<ul>
|
|
126
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L23">algebra/equation.ts:23</a></li></ul></aside></section>
|
|
127
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_randomizeDefaults" class="tsd-anchor"></a>
|
|
128
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_randomize<wbr/>Defaults</span><a href="#_randomizeDefaults" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
129
|
+
<div class="tsd-signature"><span class="tsd-kind-property">_randomize<wbr/>Defaults</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><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol"> = ...</span></div>
|
|
126
130
|
<div class="tsd-type-declaration">
|
|
127
131
|
<h4>Type declaration</h4>
|
|
128
132
|
<ul class="tsd-parameters">
|
|
129
133
|
<li class="tsd-parameter-index-signature">
|
|
130
|
-
<h5><span class="tsd-signature-symbol">[</span>key
|
|
131
|
-
<ul>
|
|
132
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
133
|
-
<section class="tsd-panel tsd-member tsd-
|
|
134
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_real</span><a href="#_real" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
135
|
-
<div class="tsd-signature">_real
|
|
136
|
-
<ul>
|
|
137
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
138
|
-
<section class="tsd-panel tsd-member tsd-
|
|
139
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_right</span><a href="#_right" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
140
|
-
<div class="tsd-signature">_right
|
|
141
|
-
<ul>
|
|
142
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
143
|
-
<section class="tsd-panel tsd-member tsd-
|
|
144
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_sign</span><a href="#_sign" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
145
|
-
<div class="tsd-signature">_sign
|
|
146
|
-
<ul>
|
|
147
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
148
|
-
<section class="tsd-panel tsd-member tsd-
|
|
149
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_solutions</span><a href="#_solutions" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
150
|
-
<div class="tsd-signature">_solutions
|
|
151
|
-
<ul>
|
|
152
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
153
|
-
<section class="tsd-panel tsd-member tsd-
|
|
154
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_varnothing</span><a href="#_varnothing" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
155
|
-
<div class="tsd-signature">_varnothing
|
|
156
|
-
<ul>
|
|
157
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
134
|
+
<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><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">boolean</span></h5></li></ul></div><aside class="tsd-sources">
|
|
135
|
+
<ul>
|
|
136
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L177">algebra/equation.ts:177</a></li></ul></aside></section>
|
|
137
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_real" class="tsd-anchor"></a>
|
|
138
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_real</span><a href="#_real" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
139
|
+
<div class="tsd-signature"><span class="tsd-kind-property">_real</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = PARTICULAR_SOLUTION.real</span></div><aside class="tsd-sources">
|
|
140
|
+
<ul>
|
|
141
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L27">algebra/equation.ts:27</a></li></ul></aside></section>
|
|
142
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_right" class="tsd-anchor"></a>
|
|
143
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_right</span><a href="#_right" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
144
|
+
<div class="tsd-signature"><span class="tsd-kind-property">_right</span><span class="tsd-signature-symbol">:</span> <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></div><aside class="tsd-sources">
|
|
145
|
+
<ul>
|
|
146
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L76">algebra/equation.ts:76</a></li></ul></aside></section>
|
|
147
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_sign" class="tsd-anchor"></a>
|
|
148
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_sign</span><a href="#_sign" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
149
|
+
<div class="tsd-signature"><span class="tsd-kind-property">_sign</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
|
|
150
|
+
<ul>
|
|
151
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L89">algebra/equation.ts:89</a></li></ul></aside></section>
|
|
152
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_solutions" class="tsd-anchor"></a>
|
|
153
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_solutions</span><a href="#_solutions" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
154
|
+
<div class="tsd-signature"><span class="tsd-kind-property">_solutions</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">
|
|
155
|
+
<ul>
|
|
156
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L100">algebra/equation.ts:100</a></li></ul></aside></section>
|
|
157
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_varnothing" class="tsd-anchor"></a>
|
|
158
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_varnothing</span><a href="#_varnothing" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
159
|
+
<div class="tsd-signature"><span class="tsd-kind-property">_varnothing</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = PARTICULAR_SOLUTION.varnothing</span></div><aside class="tsd-sources">
|
|
160
|
+
<ul>
|
|
161
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L26">algebra/equation.ts:26</a></li></ul></aside></section></section>
|
|
158
162
|
<section class="tsd-panel-group tsd-member-group">
|
|
159
163
|
<h2>Accessors</h2>
|
|
160
|
-
<section class="tsd-panel tsd-member
|
|
161
|
-
<h3 class="tsd-anchor-link"><span>display</span><a href="#display" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
162
|
-
<ul class="tsd-signatures
|
|
164
|
+
<section class="tsd-panel tsd-member"><a id="display" class="tsd-anchor"></a>
|
|
165
|
+
<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>
|
|
166
|
+
<ul class="tsd-signatures">
|
|
163
167
|
<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>
|
|
164
168
|
<li class="tsd-description">
|
|
165
169
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
166
170
|
<ul>
|
|
167
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
168
|
-
<section class="tsd-panel tsd-member
|
|
169
|
-
<h3 class="tsd-anchor-link"><span>is<wbr/>Equation</span><a href="#isEquation" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
170
|
-
<ul class="tsd-signatures
|
|
171
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L153">algebra/equation.ts:153</a></li></ul></aside></li></ul></section>
|
|
172
|
+
<section class="tsd-panel tsd-member"><a id="isEquation" class="tsd-anchor"></a>
|
|
173
|
+
<h3 class="tsd-anchor-link"><span>is<wbr/>Equation</span><a href="#isEquation" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
174
|
+
<ul class="tsd-signatures">
|
|
171
175
|
<li class="tsd-signature" id="isEquation.isEquation-1"><span class="tsd-signature-symbol">get</span> isEquation<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>
|
|
172
176
|
<li class="tsd-description">
|
|
173
177
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
174
178
|
<ul>
|
|
175
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
176
|
-
<section class="tsd-panel tsd-member
|
|
177
|
-
<h3 class="tsd-anchor-link"><span>is<wbr/>Real</span><a href="#isReal" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
178
|
-
<ul class="tsd-signatures
|
|
179
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L107">algebra/equation.ts:107</a></li></ul></aside></li></ul></section>
|
|
180
|
+
<section class="tsd-panel tsd-member"><a id="isReal" class="tsd-anchor"></a>
|
|
181
|
+
<h3 class="tsd-anchor-link"><span>is<wbr/>Real</span><a href="#isReal" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
182
|
+
<ul class="tsd-signatures">
|
|
179
183
|
<li class="tsd-signature" id="isReal.isReal-1"><span class="tsd-signature-symbol">get</span> isReal<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>
|
|
180
184
|
<li class="tsd-description">
|
|
181
185
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
182
186
|
<ul>
|
|
183
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
184
|
-
<section class="tsd-panel tsd-member
|
|
185
|
-
<h3 class="tsd-anchor-link"><span>is<wbr/>Varnothing</span><a href="#isVarnothing" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
186
|
-
<ul class="tsd-signatures
|
|
187
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L125">algebra/equation.ts:125</a></li></ul></aside></li></ul></section>
|
|
188
|
+
<section class="tsd-panel tsd-member"><a id="isVarnothing" class="tsd-anchor"></a>
|
|
189
|
+
<h3 class="tsd-anchor-link"><span>is<wbr/>Varnothing</span><a href="#isVarnothing" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
190
|
+
<ul class="tsd-signatures">
|
|
187
191
|
<li class="tsd-signature" id="isVarnothing.isVarnothing-1"><span class="tsd-signature-symbol">get</span> isVarnothing<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>
|
|
188
192
|
<li class="tsd-description">
|
|
189
193
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
190
194
|
<ul>
|
|
191
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
192
|
-
<section class="tsd-panel tsd-member
|
|
193
|
-
<h3 class="tsd-anchor-link"><span>left</span><a href="#left" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
194
|
-
<ul class="tsd-signatures
|
|
195
|
-
<li class="tsd-signature" id="left.left-1"><span class="tsd-signature-symbol">get</span> left<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
|
|
195
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L132">algebra/equation.ts:132</a></li></ul></aside></li></ul></section>
|
|
196
|
+
<section class="tsd-panel tsd-member"><a id="left" class="tsd-anchor"></a>
|
|
197
|
+
<h3 class="tsd-anchor-link"><span>left</span><a href="#left" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
198
|
+
<ul class="tsd-signatures">
|
|
199
|
+
<li class="tsd-signature" id="left.left-1"><span class="tsd-signature-symbol">get</span> left<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></li>
|
|
196
200
|
<li class="tsd-description">
|
|
197
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
201
|
+
<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">
|
|
198
202
|
<ul>
|
|
199
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
200
|
-
<li class="tsd-signature" id="left.left-2"><span class="tsd-signature-symbol">set</span> left<span class="tsd-signature-symbol">(</span
|
|
203
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L68">algebra/equation.ts:68</a></li></ul></aside></li>
|
|
204
|
+
<li class="tsd-signature" id="left.left-2"><span class="tsd-signature-symbol">set</span> left<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>
|
|
201
205
|
<li class="tsd-description">
|
|
202
206
|
<div class="tsd-parameters">
|
|
203
207
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
204
208
|
<ul class="tsd-parameter-list">
|
|
205
209
|
<li>
|
|
206
|
-
<h5>value
|
|
210
|
+
<h5><span class="tsd-kind-parameter">value</span>: <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h5></li></ul></div>
|
|
207
211
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
208
212
|
<ul>
|
|
209
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
210
|
-
<section class="tsd-panel tsd-member
|
|
211
|
-
<h3 class="tsd-anchor-link"><span>number<wbr/>Of<wbr/>Vars</span><a href="#numberOfVars" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
212
|
-
<ul class="tsd-signatures
|
|
213
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L72">algebra/equation.ts:72</a></li></ul></aside></li></ul></section>
|
|
214
|
+
<section class="tsd-panel tsd-member"><a id="numberOfVars" class="tsd-anchor"></a>
|
|
215
|
+
<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>
|
|
216
|
+
<ul class="tsd-signatures">
|
|
213
217
|
<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>
|
|
214
218
|
<li class="tsd-description">
|
|
215
219
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
|
|
216
220
|
<ul>
|
|
217
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
218
|
-
<section class="tsd-panel tsd-member
|
|
219
|
-
<h3 class="tsd-anchor-link"><span>randomize<wbr/>Defaults</span><a href="#randomizeDefaults" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
220
|
-
<ul class="tsd-signatures
|
|
221
|
-
<li class="tsd-signature" id="randomizeDefaults.randomizeDefaults-1"><span class="tsd-signature-symbol">get</span> randomizeDefaults<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>[key
|
|
221
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L165">algebra/equation.ts:165</a></li></ul></aside></li></ul></section>
|
|
222
|
+
<section class="tsd-panel tsd-member"><a id="randomizeDefaults" class="tsd-anchor"></a>
|
|
223
|
+
<h3 class="tsd-anchor-link"><span>randomize<wbr/>Defaults</span><a href="#randomizeDefaults" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
224
|
+
<ul class="tsd-signatures">
|
|
225
|
+
<li class="tsd-signature" id="randomizeDefaults.randomizeDefaults-1"><span class="tsd-signature-symbol">get</span> randomizeDefaults<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">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><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></li>
|
|
222
226
|
<li class="tsd-description">
|
|
223
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">{ </span><br/><span> </span>[key
|
|
227
|
+
<h4 class="tsd-returns-title">Returns <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><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></h4>
|
|
224
228
|
<ul class="tsd-parameters">
|
|
225
229
|
<li class="tsd-parameter-index-signature">
|
|
226
|
-
<h5><span class="tsd-signature-symbol">[</span>key
|
|
230
|
+
<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><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">boolean</span></h5></li></ul><aside class="tsd-sources">
|
|
227
231
|
<ul>
|
|
228
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
229
|
-
<li class="tsd-signature" id="randomizeDefaults.randomizeDefaults-2"><span class="tsd-signature-symbol">set</span> randomizeDefaults<span class="tsd-signature-symbol">(</span
|
|
232
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L181">algebra/equation.ts:181</a></li></ul></aside></li>
|
|
233
|
+
<li class="tsd-signature" id="randomizeDefaults.randomizeDefaults-2"><span class="tsd-signature-symbol">set</span> randomizeDefaults<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>
|
|
230
234
|
<li class="tsd-description">
|
|
231
235
|
<div class="tsd-parameters">
|
|
232
236
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
233
237
|
<ul class="tsd-parameter-list">
|
|
234
238
|
<li>
|
|
235
|
-
<h5>value
|
|
239
|
+
<h5><span class="tsd-kind-parameter">value</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><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></h5>
|
|
236
240
|
<ul class="tsd-parameters">
|
|
237
241
|
<li class="tsd-parameter-index-signature">
|
|
238
|
-
<h5><span class="tsd-signature-symbol">[</span>key
|
|
242
|
+
<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><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">boolean</span></h5></li></ul></li></ul></div>
|
|
239
243
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
240
244
|
<ul>
|
|
241
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
242
|
-
<section class="tsd-panel tsd-member
|
|
243
|
-
<h3 class="tsd-anchor-link"><span>raw</span><a href="#raw" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
244
|
-
<ul class="tsd-signatures
|
|
245
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L185">algebra/equation.ts:185</a></li></ul></aside></li></ul></section>
|
|
246
|
+
<section class="tsd-panel tsd-member"><a id="raw" class="tsd-anchor"></a>
|
|
247
|
+
<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>
|
|
248
|
+
<ul class="tsd-signatures">
|
|
245
249
|
<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>
|
|
246
250
|
<li class="tsd-description">
|
|
247
251
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
248
252
|
<ul>
|
|
249
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
250
|
-
<section class="tsd-panel tsd-member
|
|
251
|
-
<h3 class="tsd-anchor-link"><span>right</span><a href="#right" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
252
|
-
<ul class="tsd-signatures
|
|
253
|
-
<li class="tsd-signature" id="right.right-1"><span class="tsd-signature-symbol">get</span> right<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
|
|
253
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L157">algebra/equation.ts:157</a></li></ul></aside></li></ul></section>
|
|
254
|
+
<section class="tsd-panel tsd-member"><a id="right" class="tsd-anchor"></a>
|
|
255
|
+
<h3 class="tsd-anchor-link"><span>right</span><a href="#right" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
256
|
+
<ul class="tsd-signatures">
|
|
257
|
+
<li class="tsd-signature" id="right.right-1"><span class="tsd-signature-symbol">get</span> right<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></li>
|
|
254
258
|
<li class="tsd-description">
|
|
255
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_polynom.Polynom.html" class="tsd-signature-type
|
|
259
|
+
<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">
|
|
256
260
|
<ul>
|
|
257
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
258
|
-
<li class="tsd-signature" id="right.right-2"><span class="tsd-signature-symbol">set</span> right<span class="tsd-signature-symbol">(</span
|
|
261
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L78">algebra/equation.ts:78</a></li></ul></aside></li>
|
|
262
|
+
<li class="tsd-signature" id="right.right-2"><span class="tsd-signature-symbol">set</span> right<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>
|
|
259
263
|
<li class="tsd-description">
|
|
260
264
|
<div class="tsd-parameters">
|
|
261
265
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
262
266
|
<ul class="tsd-parameter-list">
|
|
263
267
|
<li>
|
|
264
|
-
<h5>value
|
|
268
|
+
<h5><span class="tsd-kind-parameter">value</span>: <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h5></li></ul></div>
|
|
265
269
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
266
270
|
<ul>
|
|
267
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
268
|
-
<section class="tsd-panel tsd-member
|
|
269
|
-
<h3 class="tsd-anchor-link"><span>sign</span><a href="#sign" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
270
|
-
<ul class="tsd-signatures
|
|
271
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L85">algebra/equation.ts:85</a></li></ul></aside></li></ul></section>
|
|
272
|
+
<section class="tsd-panel tsd-member"><a id="sign" class="tsd-anchor"></a>
|
|
273
|
+
<h3 class="tsd-anchor-link"><span>sign</span><a href="#sign" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
274
|
+
<ul class="tsd-signatures">
|
|
271
275
|
<li class="tsd-signature" id="sign.sign-1"><span class="tsd-signature-symbol">get</span> sign<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>
|
|
272
276
|
<li class="tsd-description">
|
|
273
277
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
274
278
|
<ul>
|
|
275
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
276
|
-
<li class="tsd-signature" id="sign.sign-2"><span class="tsd-signature-symbol">set</span> sign<span class="tsd-signature-symbol">(</span
|
|
279
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L91">algebra/equation.ts:91</a></li></ul></aside></li>
|
|
280
|
+
<li class="tsd-signature" id="sign.sign-2"><span class="tsd-signature-symbol">set</span> sign<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>
|
|
277
281
|
<li class="tsd-description">
|
|
278
282
|
<div class="tsd-parameters">
|
|
279
283
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
280
284
|
<ul class="tsd-parameter-list">
|
|
281
285
|
<li>
|
|
282
|
-
<h5>value
|
|
286
|
+
<h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
283
287
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
284
288
|
<ul>
|
|
285
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
286
|
-
<section class="tsd-panel tsd-member
|
|
287
|
-
<h3 class="tsd-anchor-link"><span>sign<wbr/>As<wbr/>Tex</span><a href="#signAsTex" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
288
|
-
<ul class="tsd-signatures
|
|
289
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L95">algebra/equation.ts:95</a></li></ul></aside></li></ul></section>
|
|
290
|
+
<section class="tsd-panel tsd-member"><a id="signAsTex" class="tsd-anchor"></a>
|
|
291
|
+
<h3 class="tsd-anchor-link"><span>sign<wbr/>As<wbr/>Tex</span><a href="#signAsTex" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
292
|
+
<ul class="tsd-signatures">
|
|
289
293
|
<li class="tsd-signature" id="signAsTex.signAsTex-1"><span class="tsd-signature-symbol">get</span> signAsTex<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>
|
|
290
294
|
<li class="tsd-description">
|
|
291
295
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
292
296
|
<ul>
|
|
293
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
294
|
-
<section class="tsd-panel tsd-member
|
|
295
|
-
<h3 class="tsd-anchor-link"><span>solution</span><a href="#solution" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
296
|
-
<ul class="tsd-signatures
|
|
297
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L139">algebra/equation.ts:139</a></li></ul></aside></li></ul></section>
|
|
298
|
+
<section class="tsd-panel tsd-member"><a id="solution" class="tsd-anchor"></a>
|
|
299
|
+
<h3 class="tsd-anchor-link"><span>solution</span><a href="#solution" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
300
|
+
<ul class="tsd-signatures">
|
|
297
301
|
<li class="tsd-signature" id="solution.solution-1"><span class="tsd-signature-symbol">get</span> solution<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>
|
|
298
302
|
<li class="tsd-description">
|
|
299
303
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
300
304
|
<ul>
|
|
301
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
302
|
-
<section class="tsd-panel tsd-member
|
|
303
|
-
<h3 class="tsd-anchor-link"><span>solutions</span><a href="#solutions" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
304
|
-
<ul class="tsd-signatures
|
|
305
|
-
<li class="tsd-signature" id="solutions.solutions-1"><span class="tsd-signature-symbol">get</span> solutions<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
|
|
305
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L111">algebra/equation.ts:111</a></li></ul></aside></li></ul></section>
|
|
306
|
+
<section class="tsd-panel tsd-member"><a id="solutions" class="tsd-anchor"></a>
|
|
307
|
+
<h3 class="tsd-anchor-link"><span>solutions</span><a href="#solutions" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
308
|
+
<ul class="tsd-signatures">
|
|
309
|
+
<li class="tsd-signature" id="solutions.solutions-1"><span class="tsd-signature-symbol">get</span> solutions<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>
|
|
306
310
|
<li class="tsd-description">
|
|
307
|
-
<h4 class="tsd-returns-title">Returns <a href="../interfaces/algebra_equation.ISolution.html" class="tsd-signature-type
|
|
311
|
+
<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">
|
|
308
312
|
<ul>
|
|
309
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
310
|
-
<section class="tsd-panel tsd-member
|
|
311
|
-
<h3 class="tsd-anchor-link"><span>tex</span><a href="#tex" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
312
|
-
<ul class="tsd-signatures
|
|
313
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L103">algebra/equation.ts:103</a></li></ul></aside></li></ul></section>
|
|
314
|
+
<section class="tsd-panel tsd-member"><a id="tex" class="tsd-anchor"></a>
|
|
315
|
+
<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>
|
|
316
|
+
<ul class="tsd-signatures">
|
|
313
317
|
<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>
|
|
314
318
|
<li class="tsd-description">
|
|
315
319
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
316
320
|
<ul>
|
|
317
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
318
|
-
<section class="tsd-panel tsd-member
|
|
319
|
-
<h3 class="tsd-anchor-link"><span>variables</span><a href="#variables" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
320
|
-
<ul class="tsd-signatures
|
|
321
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L149">algebra/equation.ts:149</a></li></ul></aside></li></ul></section>
|
|
322
|
+
<section class="tsd-panel tsd-member"><a id="variables" class="tsd-anchor"></a>
|
|
323
|
+
<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>
|
|
324
|
+
<ul class="tsd-signatures">
|
|
321
325
|
<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>
|
|
322
326
|
<li class="tsd-description">
|
|
323
327
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
|
324
328
|
<ul>
|
|
325
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
329
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L161">algebra/equation.ts:161</a></li></ul></aside></li></ul></section></section>
|
|
326
330
|
<section class="tsd-panel-group tsd-member-group">
|
|
327
331
|
<h2>Methods</h2>
|
|
328
|
-
<section class="tsd-panel tsd-member tsd-
|
|
329
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_find<wbr/>Sign</span><a href="#_findSign" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
330
|
-
<ul class="tsd-signatures tsd-
|
|
331
|
-
<li class="tsd-signature tsd-anchor-link" id="_findSign._findSign-1"
|
|
332
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_findSign" class="tsd-anchor"></a>
|
|
333
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_find<wbr/>Sign</span><a href="#_findSign" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
334
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
335
|
+
<li class="tsd-signature tsd-anchor-link" id="_findSign._findSign-1"><span class="tsd-kind-call-signature">_find<wbr/>Sign</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">equationString</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><span class="tsd-signature-type">false</span><a href="#_findSign._findSign-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
332
336
|
<li class="tsd-description">
|
|
333
337
|
<div class="tsd-parameters">
|
|
334
338
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
335
339
|
<ul class="tsd-parameter-list">
|
|
336
340
|
<li>
|
|
337
|
-
<h5>equationString
|
|
341
|
+
<h5><span class="tsd-kind-parameter">equationString</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
338
342
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">false</span></h4><aside class="tsd-sources">
|
|
339
343
|
<ul>
|
|
340
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
341
|
-
<section class="tsd-panel tsd-member tsd-
|
|
342
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_format<wbr/>Sign</span><a href="#_formatSign" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
343
|
-
<ul class="tsd-signatures tsd-
|
|
344
|
-
<li class="tsd-signature tsd-anchor-link" id="_formatSign._formatSign-1"
|
|
344
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L456">algebra/equation.ts:456</a></li></ul></aside></li></ul></section>
|
|
345
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_formatSign" class="tsd-anchor"></a>
|
|
346
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_format<wbr/>Sign</span><a href="#_formatSign" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
347
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
348
|
+
<li class="tsd-signature tsd-anchor-link" id="_formatSign._formatSign-1"><span class="tsd-kind-call-signature">_format<wbr/>Sign</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">signStr</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><a href="#_formatSign._formatSign-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
345
349
|
<li class="tsd-description">
|
|
346
350
|
<div class="tsd-parameters">
|
|
347
351
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
348
352
|
<ul class="tsd-parameter-list">
|
|
349
353
|
<li>
|
|
350
|
-
<h5>signStr
|
|
354
|
+
<h5><span class="tsd-kind-parameter">signStr</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
351
355
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
352
356
|
<ul>
|
|
353
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
354
|
-
<section class="tsd-panel tsd-member tsd-
|
|
355
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_reverse<wbr/>Sign</span><a href="#_reverseSign" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
356
|
-
<ul class="tsd-signatures tsd-
|
|
357
|
-
<li class="tsd-signature tsd-anchor-link" id="_reverseSign._reverseSign-1">_reverse<wbr/>Sign
|
|
357
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L487">algebra/equation.ts:487</a></li></ul></aside></li></ul></section>
|
|
358
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_reverseSign" class="tsd-anchor"></a>
|
|
359
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_reverse<wbr/>Sign</span><a href="#_reverseSign" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
360
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
361
|
+
<li class="tsd-signature tsd-anchor-link" id="_reverseSign._reverseSign-1"><span class="tsd-kind-call-signature">_reverse<wbr/>Sign</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a><a href="#_reverseSign._reverseSign-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
358
362
|
<li class="tsd-description">
|
|
359
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type
|
|
363
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a></h4><aside class="tsd-sources">
|
|
360
364
|
<ul>
|
|
361
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
362
|
-
<section class="tsd-panel tsd-member tsd-
|
|
363
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_solve<wbr/>Degree1</span><a href="#_solveDegree1" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
364
|
-
<ul class="tsd-signatures tsd-
|
|
365
|
-
<li class="tsd-signature tsd-anchor-link" id="_solveDegree1._solveDegree1-1">_solve<wbr/>Degree1
|
|
365
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L513">algebra/equation.ts:513</a></li></ul></aside></li></ul></section>
|
|
366
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_solveDegree1" class="tsd-anchor"></a>
|
|
367
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_solve<wbr/>Degree1</span><a href="#_solveDegree1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
368
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
369
|
+
<li class="tsd-signature tsd-anchor-link" id="_solveDegree1._solveDegree1-1"><span class="tsd-kind-call-signature">_solve<wbr/>Degree1</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="../interfaces/algebra_equation.ISolution.html" class="tsd-signature-type tsd-kind-interface">ISolution</a><span class="tsd-signature-symbol">[]</span><a href="#_solveDegree1._solveDegree1-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
366
370
|
<li class="tsd-description">
|
|
367
371
|
<div class="tsd-parameters">
|
|
368
372
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
369
373
|
<ul class="tsd-parameter-list">
|
|
370
374
|
<li>
|
|
371
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> letter
|
|
372
|
-
<h4 class="tsd-returns-title">Returns <a href="../interfaces/algebra_equation.ISolution.html" class="tsd-signature-type
|
|
375
|
+
<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>
|
|
376
|
+
<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">
|
|
373
377
|
<ul>
|
|
374
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
375
|
-
<section class="tsd-panel tsd-member tsd-
|
|
376
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_solve<wbr/>Degree2</span><a href="#_solveDegree2" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
377
|
-
<ul class="tsd-signatures tsd-
|
|
378
|
-
<li class="tsd-signature tsd-anchor-link" id="_solveDegree2._solveDegree2-1">_solve<wbr/>Degree2
|
|
378
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L554">algebra/equation.ts:554</a></li></ul></aside></li></ul></section>
|
|
379
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_solveDegree2" class="tsd-anchor"></a>
|
|
380
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_solve<wbr/>Degree2</span><a href="#_solveDegree2" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
381
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
382
|
+
<li class="tsd-signature tsd-anchor-link" id="_solveDegree2._solveDegree2-1"><span class="tsd-kind-call-signature">_solve<wbr/>Degree2</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="../interfaces/algebra_equation.ISolution.html" class="tsd-signature-type tsd-kind-interface">ISolution</a><span class="tsd-signature-symbol">[]</span><a href="#_solveDegree2._solveDegree2-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
379
383
|
<li class="tsd-description">
|
|
380
384
|
<div class="tsd-parameters">
|
|
381
385
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
382
386
|
<ul class="tsd-parameter-list">
|
|
383
387
|
<li>
|
|
384
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> letter
|
|
385
|
-
<h4 class="tsd-returns-title">Returns <a href="../interfaces/algebra_equation.ISolution.html" class="tsd-signature-type
|
|
388
|
+
<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>
|
|
389
|
+
<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">
|
|
386
390
|
<ul>
|
|
387
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
388
|
-
<section class="tsd-panel tsd-member tsd-
|
|
389
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_solve<wbr/>Degree3plus</span><a href="#_solveDegree3plus" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
390
|
-
<ul class="tsd-signatures tsd-
|
|
391
|
-
<li class="tsd-signature tsd-anchor-link" id="_solveDegree3plus._solveDegree3plus-1">_solve<wbr/>Degree3plus
|
|
391
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L623">algebra/equation.ts:623</a></li></ul></aside></li></ul></section>
|
|
392
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_solveDegree3plus" class="tsd-anchor"></a>
|
|
393
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_solve<wbr/>Degree3plus</span><a href="#_solveDegree3plus" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
394
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
395
|
+
<li class="tsd-signature tsd-anchor-link" id="_solveDegree3plus._solveDegree3plus-1"><span class="tsd-kind-call-signature">_solve<wbr/>Degree3plus</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="../interfaces/algebra_equation.ISolution.html" class="tsd-signature-type tsd-kind-interface">ISolution</a><span class="tsd-signature-symbol">[]</span><a href="#_solveDegree3plus._solveDegree3plus-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
392
396
|
<li class="tsd-description">
|
|
393
397
|
<div class="tsd-parameters">
|
|
394
398
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
395
399
|
<ul class="tsd-parameter-list">
|
|
396
400
|
<li>
|
|
397
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> letter
|
|
398
|
-
<h4 class="tsd-returns-title">Returns <a href="../interfaces/algebra_equation.ISolution.html" class="tsd-signature-type
|
|
401
|
+
<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>
|
|
402
|
+
<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">
|
|
399
403
|
<ul>
|
|
400
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
401
|
-
<section class="tsd-panel tsd-member
|
|
402
|
-
<h3 class="tsd-anchor-link"><span>clone</span><a href="#clone" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
403
|
-
<ul class="tsd-signatures
|
|
404
|
-
<li class="tsd-signature tsd-anchor-link" id="clone.clone-1">clone
|
|
404
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L872">algebra/equation.ts:872</a></li></ul></aside></li></ul></section>
|
|
405
|
+
<section class="tsd-panel tsd-member"><a id="clone" class="tsd-anchor"></a>
|
|
406
|
+
<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>
|
|
407
|
+
<ul class="tsd-signatures">
|
|
408
|
+
<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_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</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>
|
|
405
409
|
<li class="tsd-description">
|
|
406
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type
|
|
410
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a></h4><aside class="tsd-sources">
|
|
407
411
|
<ul>
|
|
408
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
409
|
-
<section class="tsd-panel tsd-member
|
|
410
|
-
<h3 class="tsd-anchor-link"><span>create</span><a href="#create" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
411
|
-
<ul class="tsd-signatures
|
|
412
|
-
<li class="tsd-signature tsd-anchor-link" id="create.create-1"
|
|
412
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L213">algebra/equation.ts:213</a></li></ul></aside></li></ul></section>
|
|
413
|
+
<section class="tsd-panel tsd-member"><a id="create" class="tsd-anchor"></a>
|
|
414
|
+
<h3 class="tsd-anchor-link"><span>create</span><a href="#create" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
415
|
+
<ul class="tsd-signatures">
|
|
416
|
+
<li class="tsd-signature tsd-anchor-link" id="create.create-1"><span class="tsd-kind-call-signature">create</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">left</span>, <span class="tsd-kind-parameter">right</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><a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a><a href="#create.create-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
413
417
|
<li class="tsd-description">
|
|
414
418
|
<div class="tsd-parameters">
|
|
415
419
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
416
420
|
<ul class="tsd-parameter-list">
|
|
417
421
|
<li>
|
|
418
|
-
<h5>left
|
|
422
|
+
<h5><span class="tsd-kind-parameter">left</span>: <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h5></li>
|
|
419
423
|
<li>
|
|
420
|
-
<h5>right
|
|
424
|
+
<h5><span class="tsd-kind-parameter">right</span>: <a href="algebra_polynom.Polynom.html" class="tsd-signature-type tsd-kind-class">Polynom</a></h5></li>
|
|
421
425
|
<li>
|
|
422
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> sign
|
|
423
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type
|
|
426
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">sign</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
427
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a></h4><aside class="tsd-sources">
|
|
424
428
|
<ul>
|
|
425
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
426
|
-
<section class="tsd-panel tsd-member
|
|
427
|
-
<h3 class="tsd-anchor-link"><span>degree</span><a href="#degree" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
428
|
-
<ul class="tsd-signatures
|
|
429
|
-
<li class="tsd-signature tsd-anchor-link" id="degree.degree-1">degree
|
|
429
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L206">algebra/equation.ts:206</a></li></ul></aside></li></ul></section>
|
|
430
|
+
<section class="tsd-panel tsd-member"><a id="degree" class="tsd-anchor"></a>
|
|
431
|
+
<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>
|
|
432
|
+
<ul class="tsd-signatures">
|
|
433
|
+
<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>
|
|
430
434
|
<li class="tsd-description">
|
|
431
435
|
<div class="tsd-comment tsd-typography"><p>Get the degree of the equation</p>
|
|
432
436
|
</div>
|
|
@@ -434,81 +438,111 @@ Markdown <em>support</em> is cool</p>
|
|
|
434
438
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
435
439
|
<ul class="tsd-parameter-list">
|
|
436
440
|
<li>
|
|
437
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> letter
|
|
438
|
-
<
|
|
441
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">letter</span>: <span class="tsd-signature-type">string</span></h5>
|
|
442
|
+
<div class="tsd-comment tsd-typography"></div></li></ul></div>
|
|
443
|
+
<h4 class="tsd-returns-title">Returns <a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a></h4>
|
|
444
|
+
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
439
445
|
<ul>
|
|
440
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
441
|
-
<section class="tsd-panel tsd-member
|
|
442
|
-
<h3 class="tsd-anchor-link"><span>divide</span><a href="#divide" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
443
|
-
<ul class="tsd-signatures
|
|
444
|
-
<li class="tsd-signature tsd-anchor-link" id="divide.divide-1"
|
|
446
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L373">algebra/equation.ts:373</a></li></ul></aside></li></ul></section>
|
|
447
|
+
<section class="tsd-panel tsd-member"><a id="divide" class="tsd-anchor"></a>
|
|
448
|
+
<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>
|
|
449
|
+
<ul class="tsd-signatures">
|
|
450
|
+
<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_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</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>
|
|
445
451
|
<li class="tsd-description">
|
|
446
452
|
<div class="tsd-comment tsd-typography"><p>divide an equation by a given value (transformed as a fraction)</p>
|
|
447
453
|
<pre><code><span class="hl-1">8</span><span class="hl-3">x</span><span class="hl-1">+</span><span class="hl-7">10</span><span class="hl-1">=6</span><span class="hl-3">x</span><span class="hl-1"> \</span><span class="hl-3">vert</span><span class="hl-1"> </span><span class="hl-7">2</span><br/><span class="hl-1">4</span><span class="hl-3">x</span><span class="hl-1">+</span><span class="hl-7">5</span><span class="hl-1">=3</span><span class="hl-3">x</span>
|
|
448
|
-
</code></pre>
|
|
454
|
+
</code><button>Copy</button></pre>
|
|
449
455
|
<p>|>Alternatively with $3x-4$ maybe it's working ?
|
|
450
456
|
$$\frac{3x}{5}$$</p>
|
|
451
|
-
|
|
452
|
-
<h3>Returns</h3></div>
|
|
457
|
+
</div>
|
|
453
458
|
<div class="tsd-parameters">
|
|
454
459
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
455
460
|
<ul class="tsd-parameter-list">
|
|
456
461
|
<li>
|
|
457
|
-
<h5>value
|
|
458
|
-
<
|
|
462
|
+
<h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type">unknown</span></h5>
|
|
463
|
+
<div class="tsd-comment tsd-typography"></div></li></ul></div>
|
|
464
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a></h4>
|
|
465
|
+
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
459
466
|
<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>has<wbr/>Variable</span><a href="#hasVariable" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
463
|
-
<ul class="tsd-signatures
|
|
464
|
-
<li class="tsd-signature tsd-anchor-link" id="hasVariable.hasVariable-1"
|
|
467
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L358">algebra/equation.ts:358</a></li></ul></aside></li></ul></section>
|
|
468
|
+
<section class="tsd-panel tsd-member"><a id="hasVariable" class="tsd-anchor"></a>
|
|
469
|
+
<h3 class="tsd-anchor-link"><span>has<wbr/>Variable</span><a href="#hasVariable" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
470
|
+
<ul class="tsd-signatures">
|
|
471
|
+
<li class="tsd-signature tsd-anchor-link" id="hasVariable.hasVariable-1"><span class="tsd-kind-call-signature">has<wbr/>Variable</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-type">boolean</span><a href="#hasVariable.hasVariable-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
465
472
|
<li class="tsd-description">
|
|
466
473
|
<div class="tsd-parameters">
|
|
467
474
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
468
475
|
<ul class="tsd-parameter-list">
|
|
469
476
|
<li>
|
|
470
|
-
<h5>letter
|
|
477
|
+
<h5><span class="tsd-kind-parameter">letter</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
471
478
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
472
479
|
<ul>
|
|
473
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
474
|
-
<section class="tsd-panel tsd-member tsd-
|
|
475
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>is<wbr/>Also<wbr/>Equal</span><a href="#isAlsoEqual" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
476
|
-
<ul class="tsd-signatures tsd-
|
|
477
|
-
<li class="tsd-signature tsd-anchor-link" id="isAlsoEqual.isAlsoEqual-1">is<wbr/>Also<wbr/>Equal
|
|
480
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L169">algebra/equation.ts:169</a></li></ul></aside></li></ul></section>
|
|
481
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="isAlsoEqual" class="tsd-anchor"></a>
|
|
482
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>is<wbr/>Also<wbr/>Equal</span><a href="#isAlsoEqual" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
483
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
484
|
+
<li class="tsd-signature tsd-anchor-link" id="isAlsoEqual.isAlsoEqual-1"><span class="tsd-kind-call-signature">is<wbr/>Also<wbr/>Equal</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="#isAlsoEqual.isAlsoEqual-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
478
485
|
<li class="tsd-description">
|
|
479
486
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
480
487
|
<ul>
|
|
481
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
482
|
-
<section class="tsd-panel tsd-member tsd-
|
|
483
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>is<wbr/>Greater</span><a href="#isGreater" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
484
|
-
<ul class="tsd-signatures tsd-
|
|
485
|
-
<li class="tsd-signature tsd-anchor-link" id="isGreater.isGreater-1">is<wbr/>Greater
|
|
488
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L542">algebra/equation.ts:542</a></li></ul></aside></li></ul></section>
|
|
489
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="isGreater" class="tsd-anchor"></a>
|
|
490
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>is<wbr/>Greater</span><a href="#isGreater" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
491
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
492
|
+
<li class="tsd-signature tsd-anchor-link" id="isGreater.isGreater-1"><span class="tsd-kind-call-signature">is<wbr/>Greater</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="#isGreater.isGreater-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
486
493
|
<li class="tsd-description">
|
|
487
494
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
488
495
|
<ul>
|
|
489
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
490
|
-
<section class="tsd-panel tsd-member
|
|
491
|
-
<h3 class="tsd-anchor-link"><span>is<wbr/>
|
|
492
|
-
<ul class="tsd-signatures
|
|
493
|
-
<li class="tsd-signature tsd-anchor-link" id="
|
|
496
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L530">algebra/equation.ts:530</a></li></ul></aside></li></ul></section>
|
|
497
|
+
<section class="tsd-panel tsd-member"><a id="isLinearTo" class="tsd-anchor"></a>
|
|
498
|
+
<h3 class="tsd-anchor-link"><span>is<wbr/>Linear<wbr/>To</span><a href="#isLinearTo" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
499
|
+
<ul class="tsd-signatures">
|
|
500
|
+
<li class="tsd-signature tsd-anchor-link" id="isLinearTo.isLinearTo-1"><span class="tsd-kind-call-signature">is<wbr/>Linear<wbr/>To</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">equ</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type ">Boolean</span><a href="#isLinearTo.isLinearTo-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
501
|
+
<li class="tsd-description">
|
|
502
|
+
<div class="tsd-parameters">
|
|
503
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
504
|
+
<ul class="tsd-parameter-list">
|
|
505
|
+
<li>
|
|
506
|
+
<h5><span class="tsd-kind-parameter">equ</span>: <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a></h5></li></ul></div>
|
|
507
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type ">Boolean</span></h4><aside class="tsd-sources">
|
|
508
|
+
<ul>
|
|
509
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L447">algebra/equation.ts:447</a></li></ul></aside></li></ul></section>
|
|
510
|
+
<section class="tsd-panel tsd-member"><a id="isMultiVariable" class="tsd-anchor"></a>
|
|
511
|
+
<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>
|
|
512
|
+
<ul class="tsd-signatures">
|
|
513
|
+
<li class="tsd-signature tsd-anchor-link" id="isMultiVariable.isMultiVariable-1"><span class="tsd-kind-call-signature">is<wbr/>Multi<wbr/>Variable</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="#isMultiVariable.isMultiVariable-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
494
514
|
<li class="tsd-description">
|
|
495
515
|
<div class="tsd-comment tsd-typography"><p>Determine if the equation contains more than one letter/variable.</p>
|
|
496
516
|
</div>
|
|
497
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4
|
|
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">
|
|
498
519
|
<ul>
|
|
499
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
500
|
-
<section class="tsd-panel tsd-member
|
|
501
|
-
<h3 class="tsd-anchor-link"><
|
|
502
|
-
<ul class="tsd-signatures
|
|
503
|
-
<li class="tsd-signature tsd-anchor-link" id="
|
|
520
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L380">algebra/equation.ts:380</a></li></ul></aside></li></ul></section>
|
|
521
|
+
<section class="tsd-panel tsd-member"><a id="isSameAs" class="tsd-anchor"></a>
|
|
522
|
+
<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>
|
|
523
|
+
<ul class="tsd-signatures">
|
|
524
|
+
<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">equ</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>
|
|
525
|
+
<li class="tsd-description">
|
|
526
|
+
<div class="tsd-parameters">
|
|
527
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
528
|
+
<ul class="tsd-parameter-list">
|
|
529
|
+
<li>
|
|
530
|
+
<h5><span class="tsd-kind-parameter">equ</span>: <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a></h5></li></ul></div>
|
|
531
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type ">Boolean</span></h4><aside class="tsd-sources">
|
|
532
|
+
<ul>
|
|
533
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L440">algebra/equation.ts:440</a></li></ul></aside></li></ul></section>
|
|
534
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="isStrictEqual" class="tsd-anchor"></a>
|
|
535
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>is<wbr/>Strict<wbr/>Equal</span><a href="#isStrictEqual" 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 tsd-is-private">
|
|
537
|
+
<li class="tsd-signature tsd-anchor-link" id="isStrictEqual.isStrictEqual-1"><span class="tsd-kind-call-signature">is<wbr/>Strict<wbr/>Equal</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="#isStrictEqual.isStrictEqual-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
504
538
|
<li class="tsd-description">
|
|
505
539
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
506
540
|
<ul>
|
|
507
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
508
|
-
<section class="tsd-panel tsd-member
|
|
509
|
-
<h3 class="tsd-anchor-link"><span>isolate</span><a href="#isolate" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
510
|
-
<ul class="tsd-signatures
|
|
511
|
-
<li class="tsd-signature tsd-anchor-link" id="isolate.isolate-1">isolate
|
|
541
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L538">algebra/equation.ts:538</a></li></ul></aside></li></ul></section>
|
|
542
|
+
<section class="tsd-panel tsd-member"><a id="isolate" class="tsd-anchor"></a>
|
|
543
|
+
<h3 class="tsd-anchor-link"><span>isolate</span><a href="#isolate" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
544
|
+
<ul class="tsd-signatures">
|
|
545
|
+
<li class="tsd-signature tsd-anchor-link" id="isolate.isolate-1"><span class="tsd-kind-call-signature">isolate</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><span class="tsd-signature-type">false</span><span class="tsd-signature-symbol"> | </span><a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a><a href="#isolate.isolate-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
512
546
|
<li class="tsd-description">
|
|
513
547
|
<div class="tsd-comment tsd-typography"><p>Reorder the polynom to have only one letter on the left, the rest on the right.</p>
|
|
514
548
|
</div>
|
|
@@ -516,32 +550,35 @@ $$\frac{3x}{5}$$</p>
|
|
|
516
550
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
517
551
|
<ul class="tsd-parameter-list">
|
|
518
552
|
<li>
|
|
519
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> letter
|
|
520
|
-
<
|
|
553
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">letter</span>: <span class="tsd-signature-type">string</span></h5>
|
|
554
|
+
<div class="tsd-comment tsd-typography"></div></li></ul></div>
|
|
555
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">false</span><span class="tsd-signature-symbol"> | </span><a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a></h4>
|
|
556
|
+
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
521
557
|
<ul>
|
|
522
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
523
|
-
<section class="tsd-panel tsd-member
|
|
524
|
-
<h3 class="tsd-anchor-link"><span>letters</span><a href="#letters" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
525
|
-
<ul class="tsd-signatures
|
|
526
|
-
<li class="tsd-signature tsd-anchor-link" id="letters.letters-1">letters
|
|
558
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L278">algebra/equation.ts:278</a></li></ul></aside></li></ul></section>
|
|
559
|
+
<section class="tsd-panel tsd-member"><a id="letters" class="tsd-anchor"></a>
|
|
560
|
+
<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>
|
|
561
|
+
<ul class="tsd-signatures">
|
|
562
|
+
<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>
|
|
527
563
|
<li class="tsd-description">
|
|
528
564
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
|
529
565
|
<ul>
|
|
530
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
531
|
-
<section class="tsd-panel tsd-member
|
|
532
|
-
<h3 class="tsd-anchor-link"><span>move<wbr/>Left</span><a href="#moveLeft" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
533
|
-
<ul class="tsd-signatures
|
|
534
|
-
<li class="tsd-signature tsd-anchor-link" id="moveLeft.moveLeft-1">move<wbr/>Left
|
|
566
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L384">algebra/equation.ts:384</a></li></ul></aside></li></ul></section>
|
|
567
|
+
<section class="tsd-panel tsd-member"><a id="moveLeft" class="tsd-anchor"></a>
|
|
568
|
+
<h3 class="tsd-anchor-link"><span>move<wbr/>Left</span><a href="#moveLeft" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
569
|
+
<ul class="tsd-signatures">
|
|
570
|
+
<li class="tsd-signature tsd-anchor-link" id="moveLeft.moveLeft-1"><span class="tsd-kind-call-signature">move<wbr/>Left</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a><a href="#moveLeft.moveLeft-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
535
571
|
<li class="tsd-description">
|
|
536
572
|
<div class="tsd-comment tsd-typography"><p>Reorder will move all monoms containing a letter on the left, all the other on the right.</p>
|
|
537
573
|
</div>
|
|
538
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type
|
|
574
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a></h4>
|
|
575
|
+
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
539
576
|
<ul>
|
|
540
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
541
|
-
<section class="tsd-panel tsd-member
|
|
542
|
-
<h3 class="tsd-anchor-link"><span>multiply</span><a href="#multiply" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
543
|
-
<ul class="tsd-signatures
|
|
544
|
-
<li class="tsd-signature tsd-anchor-link" id="multiply.multiply-1"
|
|
577
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L229">algebra/equation.ts:229</a></li></ul></aside></li></ul></section>
|
|
578
|
+
<section class="tsd-panel tsd-member"><a id="multiply" class="tsd-anchor"></a>
|
|
579
|
+
<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>
|
|
580
|
+
<ul class="tsd-signatures">
|
|
581
|
+
<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_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</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>
|
|
545
582
|
<li class="tsd-description">
|
|
546
583
|
<div class="tsd-comment tsd-typography"><p>Multiple an equation by a fraction value.</p>
|
|
547
584
|
</div>
|
|
@@ -549,117 +586,121 @@ $$\frac{3x}{5}$$</p>
|
|
|
549
586
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
550
587
|
<ul class="tsd-parameter-list">
|
|
551
588
|
<li>
|
|
552
|
-
<h5>value
|
|
553
|
-
<
|
|
589
|
+
<h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type">unknown</span></h5>
|
|
590
|
+
<div class="tsd-comment tsd-typography"></div></li></ul></div>
|
|
591
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a></h4>
|
|
592
|
+
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
554
593
|
<ul>
|
|
555
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
556
|
-
<section class="tsd-panel tsd-member
|
|
557
|
-
<h3 class="tsd-anchor-link"><span>parse</span><a href="#parse" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
558
|
-
<ul class="tsd-signatures
|
|
559
|
-
<li class="tsd-signature tsd-anchor-link" id="parse.parse-1"
|
|
594
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L327">algebra/equation.ts:327</a></li></ul></aside></li></ul></section>
|
|
595
|
+
<section class="tsd-panel tsd-member"><a id="parse" class="tsd-anchor"></a>
|
|
596
|
+
<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>
|
|
597
|
+
<ul class="tsd-signatures">
|
|
598
|
+
<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">equationString</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</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>
|
|
560
599
|
<li class="tsd-description">
|
|
561
600
|
<div class="tsd-parameters">
|
|
562
601
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
563
602
|
<ul class="tsd-parameter-list">
|
|
564
603
|
<li>
|
|
565
|
-
<h5>equationString
|
|
566
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type
|
|
604
|
+
<h5><span class="tsd-kind-parameter">equationString</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
605
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a></h4><aside class="tsd-sources">
|
|
567
606
|
<ul>
|
|
568
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
569
|
-
<section class="tsd-panel tsd-member
|
|
570
|
-
<h3 class="tsd-anchor-link"><span>randomize</span><a href="#randomize" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
571
|
-
<ul class="tsd-signatures
|
|
572
|
-
<li class="tsd-signature tsd-anchor-link" id="randomize.randomize-1">randomize
|
|
607
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L190">algebra/equation.ts:190</a></li></ul></aside></li></ul></section>
|
|
608
|
+
<section class="tsd-panel tsd-member"><a id="randomize" class="tsd-anchor"></a>
|
|
609
|
+
<h3 class="tsd-anchor-link"><span>randomize</span><a href="#randomize" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
610
|
+
<ul class="tsd-signatures">
|
|
611
|
+
<li class="tsd-signature tsd-anchor-link" id="randomize.randomize-1"><span class="tsd-kind-call-signature">randomize</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">opts</span><span class="tsd-signature-symbol">?</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><a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a><a href="#randomize.randomize-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
573
612
|
<li class="tsd-description">
|
|
574
613
|
<div class="tsd-parameters">
|
|
575
614
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
576
615
|
<ul class="tsd-parameter-list">
|
|
577
616
|
<li>
|
|
578
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> opts
|
|
617
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">opts</span>: <span class="tsd-signature-symbol">{}</span></h5>
|
|
579
618
|
<ul class="tsd-parameters"></ul></li>
|
|
580
619
|
<li>
|
|
581
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> sign
|
|
582
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type
|
|
620
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">sign</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
621
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a></h4><aside class="tsd-sources">
|
|
583
622
|
<ul>
|
|
584
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
585
|
-
<section class="tsd-panel tsd-member
|
|
586
|
-
<h3 class="tsd-anchor-link"><span>reorder</span><a href="#reorder" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
587
|
-
<ul class="tsd-signatures
|
|
588
|
-
<li class="tsd-signature tsd-anchor-link" id="reorder.reorder-1">reorder
|
|
623
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L220">algebra/equation.ts:220</a></li></ul></aside></li></ul></section>
|
|
624
|
+
<section class="tsd-panel tsd-member"><a id="reorder" class="tsd-anchor"></a>
|
|
625
|
+
<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>
|
|
626
|
+
<ul class="tsd-signatures">
|
|
627
|
+
<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">allLeft</span><span class="tsd-signature-symbol">?</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</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>
|
|
589
628
|
<li class="tsd-description">
|
|
590
629
|
<div class="tsd-parameters">
|
|
591
630
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
592
631
|
<ul class="tsd-parameter-list">
|
|
593
632
|
<li>
|
|
594
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> allLeft
|
|
595
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type
|
|
633
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">allLeft</span>: <span class="tsd-signature-type">boolean</span></h5></li></ul></div>
|
|
634
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a></h4><aside class="tsd-sources">
|
|
596
635
|
<ul>
|
|
597
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
598
|
-
<section class="tsd-panel tsd-member
|
|
599
|
-
<h3 class="tsd-anchor-link"><span>replace<wbr/>By</span><a href="#replaceBy" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
600
|
-
<ul class="tsd-signatures
|
|
601
|
-
<li class="tsd-signature tsd-anchor-link" id="replaceBy.replaceBy-1"
|
|
636
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L235">algebra/equation.ts:235</a></li></ul></aside></li></ul></section>
|
|
637
|
+
<section class="tsd-panel tsd-member"><a id="replaceBy" class="tsd-anchor"></a>
|
|
638
|
+
<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>
|
|
639
|
+
<ul class="tsd-signatures">
|
|
640
|
+
<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_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</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>
|
|
602
641
|
<li class="tsd-description">
|
|
603
642
|
<div class="tsd-parameters">
|
|
604
643
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
605
644
|
<ul class="tsd-parameter-list">
|
|
606
645
|
<li>
|
|
607
|
-
<h5>letter
|
|
646
|
+
<h5><span class="tsd-kind-parameter">letter</span>: <span class="tsd-signature-type">string</span></h5></li>
|
|
608
647
|
<li>
|
|
609
|
-
<h5>P
|
|
610
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type
|
|
648
|
+
<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>
|
|
649
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a></h4><aside class="tsd-sources">
|
|
611
650
|
<ul>
|
|
612
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
613
|
-
<section class="tsd-panel tsd-member
|
|
614
|
-
<h3 class="tsd-anchor-link"><span>simplify</span><a href="#simplify" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
615
|
-
<ul class="tsd-signatures
|
|
616
|
-
<li class="tsd-signature tsd-anchor-link" id="simplify.simplify-1">simplify
|
|
651
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L317">algebra/equation.ts:317</a></li></ul></aside></li></ul></section>
|
|
652
|
+
<section class="tsd-panel tsd-member"><a id="simplify" class="tsd-anchor"></a>
|
|
653
|
+
<h3 class="tsd-anchor-link"><span>simplify</span><a href="#simplify" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
654
|
+
<ul class="tsd-signatures">
|
|
655
|
+
<li class="tsd-signature tsd-anchor-link" id="simplify.simplify-1"><span class="tsd-kind-call-signature">simplify</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a><a href="#simplify.simplify-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
617
656
|
<li class="tsd-description">
|
|
618
657
|
<div class="tsd-comment tsd-typography"><p>Multiply by the lcm denominator and divide by the gcm numerators.</p>
|
|
619
658
|
</div>
|
|
620
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type
|
|
659
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a></h4>
|
|
660
|
+
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
621
661
|
<ul>
|
|
622
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
623
|
-
<section class="tsd-panel tsd-member
|
|
624
|
-
<h3 class="tsd-anchor-link"><span>solve</span><a href="#solve" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
625
|
-
<ul class="tsd-signatures
|
|
626
|
-
<li class="tsd-signature tsd-anchor-link" id="solve.solve-1">solve
|
|
662
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L264">algebra/equation.ts:264</a></li></ul></aside></li></ul></section>
|
|
663
|
+
<section class="tsd-panel tsd-member"><a id="solve" class="tsd-anchor"></a>
|
|
664
|
+
<h3 class="tsd-anchor-link"><span>solve</span><a href="#solve" 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="solve.solve-1"><span class="tsd-kind-call-signature">solve</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a><a href="#solve.solve-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
627
667
|
<li class="tsd-description">
|
|
628
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type
|
|
668
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a></h4><aside class="tsd-sources">
|
|
629
669
|
<ul>
|
|
630
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
631
|
-
<section class="tsd-panel tsd-member
|
|
632
|
-
<h3 class="tsd-anchor-link"><span>test</span><a href="#test" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
633
|
-
<ul class="tsd-signatures
|
|
634
|
-
<li class="tsd-signature tsd-anchor-link" id="test.test-1"
|
|
670
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L394">algebra/equation.ts:394</a></li></ul></aside></li></ul></section>
|
|
671
|
+
<section class="tsd-panel tsd-member"><a id="test" class="tsd-anchor"></a>
|
|
672
|
+
<h3 class="tsd-anchor-link"><span>test</span><a href="#test" 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">
|
|
674
|
+
<li class="tsd-signature tsd-anchor-link" id="test.test-1"><span class="tsd-kind-call-signature">test</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 ">Boolean</span><a href="#test.test-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
635
675
|
<li class="tsd-description">
|
|
636
676
|
<div class="tsd-parameters">
|
|
637
677
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
638
678
|
<ul class="tsd-parameter-list">
|
|
639
679
|
<li>
|
|
640
|
-
<h5>values
|
|
641
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Boolean</span></h4><aside class="tsd-sources">
|
|
680
|
+
<h5><span class="tsd-kind-parameter">values</span>: <a href="../types/algebra_monom.literalType.html" class="tsd-signature-type tsd-kind-type-alias">literalType</a></h5></li></ul></div>
|
|
681
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type ">Boolean</span></h4><aside class="tsd-sources">
|
|
642
682
|
<ul>
|
|
643
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
644
|
-
<section class="tsd-panel tsd-member
|
|
645
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <span>make<wbr/>Solutions<wbr/>Unique</span><a href="#makeSolutionsUnique" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
646
|
-
<ul class="tsd-signatures
|
|
647
|
-
<li class="tsd-signature tsd-anchor-link" id="makeSolutionsUnique.makeSolutionsUnique-1">make<wbr/>Solutions<wbr/>Unique
|
|
683
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L436">algebra/equation.ts:436</a></li></ul></aside></li></ul></section>
|
|
684
|
+
<section class="tsd-panel tsd-member"><a id="makeSolutionsUnique" class="tsd-anchor"></a>
|
|
685
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <span>make<wbr/>Solutions<wbr/>Unique</span><a href="#makeSolutionsUnique" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
686
|
+
<ul class="tsd-signatures">
|
|
687
|
+
<li class="tsd-signature tsd-anchor-link" id="makeSolutionsUnique.makeSolutionsUnique-1"><span class="tsd-kind-call-signature">make<wbr/>Solutions<wbr/>Unique</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">solutions</span>, <span class="tsd-kind-parameter">sorted</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="#makeSolutionsUnique.makeSolutionsUnique-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
648
688
|
<li class="tsd-description">
|
|
649
689
|
<div class="tsd-parameters">
|
|
650
690
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
651
691
|
<ul class="tsd-parameter-list">
|
|
652
692
|
<li>
|
|
653
|
-
<h5>solutions
|
|
693
|
+
<h5><span class="tsd-kind-parameter">solutions</span>: <a href="../interfaces/algebra_equation.ISolution.html" class="tsd-signature-type tsd-kind-interface">ISolution</a><span class="tsd-signature-symbol">[]</span></h5></li>
|
|
654
694
|
<li>
|
|
655
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> sorted
|
|
656
|
-
<h4 class="tsd-returns-title">Returns <a href="../interfaces/algebra_equation.ISolution.html" class="tsd-signature-type
|
|
695
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">sorted</span>: <span class="tsd-signature-type">boolean</span></h5></li></ul></div>
|
|
696
|
+
<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">
|
|
657
697
|
<ul>
|
|
658
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
659
|
-
<div class="col-
|
|
698
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/equation.ts#L419">algebra/equation.ts:419</a></li></ul></aside></li></ul></section></section></div>
|
|
699
|
+
<div class="col-sidebar">
|
|
700
|
+
<div class="page-menu">
|
|
660
701
|
<div class="tsd-navigation settings">
|
|
661
702
|
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
|
|
662
|
-
<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>
|
|
703
|
+
<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>
|
|
663
704
|
<div class="tsd-accordion-details">
|
|
664
705
|
<div class="tsd-filter-visibility">
|
|
665
706
|
<h4 class="uppercase">Member Visibility</h4><form>
|
|
@@ -669,85 +710,87 @@ $$\frac{3x}{5}$$</p>
|
|
|
669
710
|
<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>
|
|
670
711
|
<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>
|
|
671
712
|
<div class="tsd-theme-toggle">
|
|
672
|
-
<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>
|
|
673
|
-
<
|
|
674
|
-
<
|
|
675
|
-
<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>
|
|
713
|
+
<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>
|
|
714
|
+
<details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary">
|
|
715
|
+
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="#icon-chevronDown"></use></svg>On This Page</h3></summary>
|
|
676
716
|
<div class="tsd-accordion-details">
|
|
677
717
|
<ul>
|
|
678
|
-
<li class="
|
|
679
|
-
<
|
|
680
|
-
<li class="tsd-kind-
|
|
681
|
-
<li class="tsd-kind-
|
|
682
|
-
<li class="tsd-kind-
|
|
683
|
-
<li class="tsd-kind-
|
|
684
|
-
<li class="
|
|
685
|
-
<li class="tsd-kind-
|
|
686
|
-
<li class="tsd-kind-
|
|
687
|
-
<li class="tsd-kind-
|
|
688
|
-
<li class="tsd-kind-
|
|
689
|
-
<li class="tsd-kind-
|
|
690
|
-
<li class="tsd-kind-
|
|
691
|
-
<li class="tsd-kind-
|
|
692
|
-
<li class="tsd-kind-
|
|
693
|
-
<li class="tsd-kind-
|
|
694
|
-
<li class="tsd-kind-
|
|
695
|
-
<li class="tsd-kind-
|
|
696
|
-
<
|
|
697
|
-
<
|
|
698
|
-
<li
|
|
699
|
-
<
|
|
700
|
-
<li
|
|
701
|
-
<li
|
|
702
|
-
<li
|
|
703
|
-
<li
|
|
704
|
-
<li
|
|
705
|
-
<li
|
|
706
|
-
<li
|
|
707
|
-
<li
|
|
708
|
-
<li
|
|
709
|
-
<li
|
|
710
|
-
<li
|
|
711
|
-
<li
|
|
712
|
-
<li
|
|
713
|
-
<li
|
|
714
|
-
<li
|
|
715
|
-
<li
|
|
716
|
-
<li
|
|
717
|
-
<li
|
|
718
|
-
<li
|
|
719
|
-
<li
|
|
720
|
-
<li
|
|
721
|
-
<li
|
|
722
|
-
<li
|
|
723
|
-
<li
|
|
724
|
-
<li
|
|
725
|
-
<li
|
|
726
|
-
<li
|
|
727
|
-
<li
|
|
728
|
-
<li
|
|
729
|
-
<li
|
|
730
|
-
<li
|
|
731
|
-
<
|
|
732
|
-
<
|
|
733
|
-
<
|
|
734
|
-
<li
|
|
735
|
-
<li
|
|
736
|
-
<li
|
|
737
|
-
<li
|
|
738
|
-
<li
|
|
739
|
-
<
|
|
740
|
-
<
|
|
741
|
-
<
|
|
742
|
-
<li
|
|
743
|
-
<li
|
|
744
|
-
<li
|
|
745
|
-
<li
|
|
746
|
-
<li
|
|
747
|
-
<li
|
|
748
|
-
<li
|
|
749
|
-
<li
|
|
750
|
-
<li
|
|
751
|
-
<
|
|
718
|
+
<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>
|
|
719
|
+
<li><a href="#_left" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_left</span></a></li>
|
|
720
|
+
<li><a href="#_polynom" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_polynom</span></a></li>
|
|
721
|
+
<li><a href="#_randomizeDefaults" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_randomize<wbr/>Defaults</span></a></li>
|
|
722
|
+
<li><a href="#_real" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_real</span></a></li>
|
|
723
|
+
<li><a href="#_right" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_right</span></a></li>
|
|
724
|
+
<li><a href="#_sign" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_sign</span></a></li>
|
|
725
|
+
<li><a href="#_solutions" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_solutions</span></a></li>
|
|
726
|
+
<li><a href="#_varnothing" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_varnothing</span></a></li>
|
|
727
|
+
<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>
|
|
728
|
+
<li><a href="#isEquation" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>is<wbr/>Equation</span></a></li>
|
|
729
|
+
<li><a href="#isReal" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>is<wbr/>Real</span></a></li>
|
|
730
|
+
<li><a href="#isVarnothing" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>is<wbr/>Varnothing</span></a></li>
|
|
731
|
+
<li><a href="#left" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>left</span></a></li>
|
|
732
|
+
<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>
|
|
733
|
+
<li><a href="#randomizeDefaults" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>randomize<wbr/>Defaults</span></a></li>
|
|
734
|
+
<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>
|
|
735
|
+
<li><a href="#right" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>right</span></a></li>
|
|
736
|
+
<li><a href="#sign" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>sign</span></a></li>
|
|
737
|
+
<li><a href="#signAsTex" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>sign<wbr/>As<wbr/>Tex</span></a></li>
|
|
738
|
+
<li><a href="#solution" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>solution</span></a></li>
|
|
739
|
+
<li><a href="#solutions" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>solutions</span></a></li>
|
|
740
|
+
<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>
|
|
741
|
+
<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>
|
|
742
|
+
<li><a href="#_findSign" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>_find<wbr/>Sign</span></a></li>
|
|
743
|
+
<li><a href="#_formatSign" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>_format<wbr/>Sign</span></a></li>
|
|
744
|
+
<li><a href="#_reverseSign" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>_reverse<wbr/>Sign</span></a></li>
|
|
745
|
+
<li><a href="#_solveDegree1" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>_solve<wbr/>Degree1</span></a></li>
|
|
746
|
+
<li><a href="#_solveDegree2" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>_solve<wbr/>Degree2</span></a></li>
|
|
747
|
+
<li><a href="#_solveDegree3plus" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>_solve<wbr/>Degree3plus</span></a></li>
|
|
748
|
+
<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>
|
|
749
|
+
<li><a href="#create" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>create</span></a></li>
|
|
750
|
+
<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>
|
|
751
|
+
<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>
|
|
752
|
+
<li><a href="#hasVariable" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>has<wbr/>Variable</span></a></li>
|
|
753
|
+
<li><a href="#isAlsoEqual" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Also<wbr/>Equal</span></a></li>
|
|
754
|
+
<li><a href="#isGreater" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Greater</span></a></li>
|
|
755
|
+
<li><a href="#isLinearTo" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Linear<wbr/>To</span></a></li>
|
|
756
|
+
<li><a href="#isMultiVariable" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Multi<wbr/>Variable</span></a></li>
|
|
757
|
+
<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>
|
|
758
|
+
<li><a href="#isStrictEqual" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>is<wbr/>Strict<wbr/>Equal</span></a></li>
|
|
759
|
+
<li><a href="#isolate" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>isolate</span></a></li>
|
|
760
|
+
<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>
|
|
761
|
+
<li><a href="#moveLeft" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>move<wbr/>Left</span></a></li>
|
|
762
|
+
<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>
|
|
763
|
+
<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>
|
|
764
|
+
<li><a href="#randomize" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>randomize</span></a></li>
|
|
765
|
+
<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>
|
|
766
|
+
<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>
|
|
767
|
+
<li><a href="#simplify" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>simplify</span></a></li>
|
|
768
|
+
<li><a href="#solve" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>solve</span></a></li>
|
|
769
|
+
<li><a href="#test" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>test</span></a></li>
|
|
770
|
+
<li><a href="#makeSolutionsUnique" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>make<wbr/>Solutions<wbr/>Unique</span></a></li></ul></div></details></div>
|
|
771
|
+
<div class="site-menu">
|
|
772
|
+
<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>
|
|
773
|
+
<ul class="tsd-small-nested-navigation">
|
|
774
|
+
<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>
|
|
775
|
+
<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>
|
|
776
|
+
<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>
|
|
777
|
+
<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>
|
|
778
|
+
<li>
|
|
779
|
+
<details class="tsd-index-accordion" open data-key="algebra/equation"><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_equation.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>algebra/equation</span></a></summary>
|
|
780
|
+
<div class="tsd-accordion-details">
|
|
781
|
+
<ul class="tsd-nested-navigation">
|
|
782
|
+
<li><a href="../enums/algebra_equation.PARTICULAR_SOLUTION.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-8"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-enum)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.45 16V7.24H14.49V8.224H10.518V10.936H14.07V11.908H10.518V15.016H14.49V16H9.45Z" fill="var(--color-text)"></path></g></svg><span>PARTICULAR_<wbr/>SOLUTION</span></a></li>
|
|
783
|
+
<li><a href="algebra_equation.Equation.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>Equation</span></a></li>
|
|
784
|
+
<li><a href="../interfaces/algebra_equation.ISolution.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>ISolution</span></a></li></ul></div></details></li>
|
|
785
|
+
<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>
|
|
786
|
+
<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>
|
|
787
|
+
<li><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></li>
|
|
788
|
+
<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>
|
|
789
|
+
<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>
|
|
790
|
+
<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>
|
|
791
|
+
<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>
|
|
792
|
+
<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>
|
|
793
|
+
<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>
|
|
794
|
+
<div class="tsd-generator">
|
|
752
795
|
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
|
|
753
|
-
<div class="overlay"></div
|
|
796
|
+
<div class="overlay"></div></body></html>
|