pimath 0.0.119 → 0.0.121
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +23 -23
- package/.idea/PI.iml +7 -1
- package/dev/pimath.js +7929 -0
- package/dev/pimath.js.map +1 -0
- package/dist/{pi.js → pimath.js} +7612 -7829
- package/dist/pimath.js.map +1 -0
- package/dist/pimath.min.js +2 -0
- package/dist/pimath.min.js.map +1 -0
- package/docs/assets/main.js +3 -3
- package/docs/assets/search.js +1 -1
- package/docs/assets/style.css +450 -363
- package/docs/classes/Logicalset.Logicalset.html +119 -110
- package/docs/classes/Polynom.Rational.html +230 -227
- package/docs/classes/Vector-1.Vector.html +319 -273
- package/docs/classes/Vector.Point.html +189 -190
- package/docs/classes/algebra_equation.Equation.html +489 -446
- package/docs/classes/algebra_linearSystem.LinearSystem.html +228 -217
- package/docs/classes/algebra_monom.Monom.html +564 -507
- package/docs/classes/algebra_polynom.Polynom.html +774 -753
- package/docs/classes/coefficients_fraction.Fraction.html +573 -565
- package/docs/classes/geometry_circle.Circle.html +299 -299
- package/docs/classes/geometry_line.Line.html +511 -451
- package/docs/classes/geometry_triangle.Triangle.html +273 -264
- package/docs/classes/numeric.Numeric.html +138 -132
- package/docs/classes/shutingyard.Shutingyard.html +144 -133
- package/docs/enums/algebra_equation.PARTICULAR_SOLUTION.html +47 -46
- package/docs/enums/geometry_line.LinePropriety.html +58 -58
- package/docs/enums/shutingyard.ShutingyardMode.html +62 -58
- package/docs/enums/shutingyard.ShutingyardType.html +74 -70
- package/docs/index.html +31 -33
- package/docs/interfaces/algebra_equation.ISolution.html +61 -59
- package/docs/interfaces/algebra_polynom.IEuclidian.html +47 -46
- package/docs/interfaces/geometry_triangle.remarquableLines.html +74 -74
- package/docs/modules/Logicalset.html +33 -38
- package/docs/modules/Polynom.html +33 -38
- package/docs/modules/Vector-1.html +33 -38
- package/docs/modules/Vector.html +33 -38
- package/docs/modules/algebra_equation.html +35 -41
- package/docs/modules/algebra_linearSystem.html +31 -37
- package/docs/modules/algebra_monom.html +33 -39
- package/docs/modules/algebra_polynom.html +35 -41
- package/docs/modules/coefficients_fraction.html +33 -39
- package/docs/modules/geometry_circle.html +31 -37
- package/docs/modules/geometry_line.html +33 -39
- package/docs/modules/geometry_triangle.html +33 -39
- package/docs/modules/numeric.html +31 -37
- package/docs/modules/shutingyard.html +41 -47
- package/docs/types/algebra_monom.literalType.html +33 -37
- package/docs/types/algebra_polynom.PolynomParsingType.html +33 -37
- package/docs/types/coefficients_fraction.FractionParsingType.html +32 -36
- package/docs/types/shutingyard.Token.html +38 -42
- package/docs/types/shutingyard.tokenType.html +40 -44
- package/docs/variables/shutingyard.tokenConstant.html +37 -41
- package/esm/index.d.ts +38 -41
- package/esm/index.js +43 -46
- package/esm/index.js.map +1 -1
- package/esm/maths/algebra/equation.d.ts +119 -117
- package/esm/maths/algebra/equation.js +796 -785
- package/esm/maths/algebra/equation.js.map +1 -1
- package/esm/maths/algebra/linearSystem.d.ts +39 -38
- package/esm/maths/algebra/linearSystem.js +278 -262
- package/esm/maths/algebra/linearSystem.js.map +1 -1
- package/esm/maths/algebra/logicalset.d.ts +28 -28
- package/esm/maths/algebra/logicalset.js +157 -157
- package/esm/maths/algebra/monom.d.ts +206 -206
- package/esm/maths/algebra/monom.js +908 -908
- package/esm/maths/algebra/monom.js.map +1 -1
- package/esm/maths/algebra/polynom.d.ts +157 -157
- package/esm/maths/algebra/polynom.js +1277 -1277
- package/esm/maths/algebra/rational.d.ts +45 -45
- package/esm/maths/algebra/rational.js +183 -183
- package/esm/maths/algebra/study/rationalStudy.d.ts +28 -28
- package/esm/maths/algebra/study/rationalStudy.js +243 -243
- package/esm/maths/algebra/study.d.ts +142 -142
- package/esm/maths/algebra/study.js +377 -377
- package/esm/maths/algebra/study.js.map +1 -1
- package/esm/maths/coefficients/fraction.d.ts +90 -90
- package/esm/maths/coefficients/fraction.js +516 -516
- package/esm/maths/coefficients/fraction.js.map +1 -1
- package/esm/maths/coefficients/nthRoot.d.ts +23 -23
- package/esm/maths/coefficients/nthRoot.js +136 -136
- package/esm/maths/geometry/circle.d.ts +45 -45
- package/esm/maths/geometry/circle.js +323 -323
- package/esm/maths/geometry/line.d.ts +99 -99
- package/esm/maths/geometry/line.js +481 -481
- package/esm/maths/geometry/line.js.map +1 -1
- package/esm/maths/geometry/point.d.ts +34 -34
- package/esm/maths/geometry/point.js +166 -166
- package/esm/maths/geometry/point.js.map +1 -1
- package/esm/maths/geometry/triangle.d.ts +85 -85
- package/esm/maths/geometry/triangle.js +268 -268
- package/esm/maths/geometry/vector.d.ts +41 -41
- package/esm/maths/geometry/vector.js +197 -197
- package/esm/maths/geometry/vector.js.map +1 -1
- package/esm/maths/numeric.d.ts +28 -28
- package/esm/maths/numeric.js +180 -169
- package/esm/maths/numeric.js.map +1 -1
- package/esm/maths/numexp.d.ts +19 -0
- package/esm/maths/numexp.js +186 -0
- package/esm/maths/numexp.js.map +1 -0
- package/esm/maths/randomization/random.d.ts +23 -23
- package/esm/maths/randomization/random.js +78 -78
- package/esm/maths/randomization/random.js.map +1 -1
- package/esm/maths/randomization/randomCore.d.ts +7 -7
- package/esm/maths/randomization/randomCore.js +21 -21
- package/esm/maths/randomization/rndFraction.d.ts +12 -12
- package/esm/maths/randomization/rndFraction.js +43 -43
- package/esm/maths/randomization/rndGeometryLine.d.ts +12 -12
- package/esm/maths/randomization/rndGeometryLine.js +45 -45
- package/esm/maths/randomization/rndGeometryPoint.d.ts +12 -12
- package/esm/maths/randomization/rndGeometryPoint.js +60 -60
- package/esm/maths/randomization/rndHelpers.d.ts +23 -23
- package/esm/maths/randomization/rndHelpers.js +76 -76
- package/esm/maths/randomization/rndMonom.d.ts +12 -12
- package/esm/maths/randomization/rndMonom.js +52 -52
- package/esm/maths/randomization/rndPolynom.d.ts +13 -13
- package/esm/maths/randomization/rndPolynom.js +74 -74
- package/esm/maths/randomization/rndTypes.d.ts +34 -34
- package/esm/maths/randomization/rndTypes.js +2 -2
- package/esm/maths/shutingyard.d.ts +59 -59
- package/esm/maths/shutingyard.js +442 -442
- package/esm/maths/shutingyard.js.map +1 -1
- package/package.json +11 -11
- package/public/index.html +50 -81
- package/public/playground.html +7 -8
- package/src/index.ts +2 -5
- package/src/maths/algebra/equation.ts +16 -0
- package/src/maths/algebra/linearSystem.ts +20 -0
- package/src/maths/algebra/study.ts +1 -1
- package/src/maths/numeric.ts +49 -48
- package/src/maths/{expressions/numexp.ts → numexp.ts} +2 -2
- package/tests/algebra/equation.test.ts +19 -5
- package/tests/algebra/linear.test.ts +3 -11
- package/tests/algebra/polynom.test.ts +7 -8
- package/tests/algebra/rationnal.test.ts +1 -1
- package/tests/algebra/study.test.ts +2 -9
- package/tests/coefficients/fraction.test.ts +8 -8
- package/tests/custom.test.ts +33 -37
- package/tests/numeric.test.ts +1 -2
- package/tests/numexp.test.ts +1 -5
- package/tests/shutingyard.test.ts +3 -3
- package/webpack-production-min.config.js +1 -1
- package/webpack-production.config.js +1 -1
- package/webpack.config.js +1 -1
- package/dist/pi.js.map +0 -1
- package/dist/pi.min.js +0 -2
- package/dist/pi.min.js.map +0 -1
- package/docs/classes/expressions_numexp.NumExp.html +0 -236
- package/docs/classes/expressions_polynomexp.PolynomExpFactor.html +0 -317
- package/docs/classes/expressions_polynomexp.PolynomExpProduct.html +0 -285
- package/docs/modules/expressions_numexp.html +0 -71
- package/docs/modules/expressions_polynomexp.html +0 -73
- package/docs/modules.html +0 -76
- package/graph.svg +0 -1033
- package/src/maths/expressions/ExpressionTree.ts +0 -172
- package/src/maths/expressions/expression.ts +0 -286
- package/src/maths/expressions/expressionFactor.ts +0 -190
- package/src/maths/expressions/expressionMember.ts +0 -233
- package/src/maths/expressions/expressionOperators.ts +0 -49
- package/src/maths/expressions/expressionParser.ts +0 -295
- package/src/maths/expressions/factors/ExpFactor.ts +0 -39
- package/src/maths/expressions/factors/ExpFactorConstant.ts +0 -60
- package/src/maths/expressions/factors/ExpFactorExponential.ts +0 -26
- package/src/maths/expressions/factors/ExpFactorNumber.ts +0 -72
- package/src/maths/expressions/factors/ExpFactorPower.ts +0 -42
- package/src/maths/expressions/factors/ExpFactorTrigo.ts +0 -53
- package/src/maths/expressions/factors/ExpFactorVariable.ts +0 -45
- package/src/maths/expressions/internals.ts +0 -14
- package/src/maths/expressions/polynomexp.bkp.ts +0 -221
- package/src/maths/expressions/polynomexp.ts +0 -310
- package/tests/expressions/expressions.test.ts +0 -145
- package/tests/expressions/expressiontree.test.ts +0 -11
- package/tests/polynomexp.test.ts +0 -12
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>LinearSystem | 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>LinearSystem | 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_linearSystem.html">algebra/linearSystem</a></li>
|
|
17
17
|
<li><a href="algebra_linearSystem.LinearSystem.html">LinearSystem</a></li></ul>
|
|
18
18
|
<h1>Class LinearSystem</h1></div>
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
<ul class="tsd-hierarchy">
|
|
22
22
|
<li><span class="target">LinearSystem</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/linearSystem.ts#L8">algebra/linearSystem.ts:8</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,202 +29,211 @@
|
|
|
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_linearSystem.LinearSystem.html#constructor" class="tsd-index-link
|
|
32
|
+
<div class="tsd-index-list"><a href="algebra_linearSystem.LinearSystem.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_linearSystem.LinearSystem.html#_equations" class="tsd-index-link tsd-
|
|
37
|
-
<a href="algebra_linearSystem.LinearSystem.html#_letters" class="tsd-index-link tsd-
|
|
38
|
-
<a href="algebra_linearSystem.LinearSystem.html#_resolutionSteps" class="tsd-index-link tsd-
|
|
39
|
-
<a href="algebra_linearSystem.LinearSystem.html#_solutions" class="tsd-index-link tsd-
|
|
36
|
+
<div class="tsd-index-list"><a href="algebra_linearSystem.LinearSystem.html#_equations" 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>_equations</span></a>
|
|
37
|
+
<a href="algebra_linearSystem.LinearSystem.html#_letters" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_letters</span></a>
|
|
38
|
+
<a href="algebra_linearSystem.LinearSystem.html#_resolutionSteps" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_resolution<wbr/>Steps</span></a>
|
|
39
|
+
<a href="algebra_linearSystem.LinearSystem.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>
|
|
40
40
|
</div></section>
|
|
41
41
|
<section class="tsd-index-section">
|
|
42
42
|
<h3 class="tsd-index-heading">Accessors</h3>
|
|
43
|
-
<div class="tsd-index-list"><a href="algebra_linearSystem.LinearSystem.html#equations" class="tsd-index-link
|
|
44
|
-
<a href="algebra_linearSystem.LinearSystem.html#isSolvable" class="tsd-index-link
|
|
45
|
-
<a href="algebra_linearSystem.LinearSystem.html#letters" class="tsd-index-link
|
|
46
|
-
<a href="algebra_linearSystem.LinearSystem.html#resolutionSteps" class="tsd-index-link
|
|
47
|
-
<a href="algebra_linearSystem.LinearSystem.html#solution" class="tsd-index-link
|
|
48
|
-
<a href="algebra_linearSystem.LinearSystem.html#
|
|
49
|
-
<a href="algebra_linearSystem.LinearSystem.html#
|
|
43
|
+
<div class="tsd-index-list"><a href="algebra_linearSystem.LinearSystem.html#equations" 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>equations</span></a>
|
|
44
|
+
<a href="algebra_linearSystem.LinearSystem.html#isSolvable" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>is<wbr/>Solvable</span></a>
|
|
45
|
+
<a href="algebra_linearSystem.LinearSystem.html#letters" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>letters</span></a>
|
|
46
|
+
<a href="algebra_linearSystem.LinearSystem.html#resolutionSteps" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>resolution<wbr/>Steps</span></a>
|
|
47
|
+
<a href="algebra_linearSystem.LinearSystem.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>
|
|
48
|
+
<a href="algebra_linearSystem.LinearSystem.html#solutionAsDisplay" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>solution<wbr/>As<wbr/>Display</span></a>
|
|
49
|
+
<a href="algebra_linearSystem.LinearSystem.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>
|
|
50
|
+
<a href="algebra_linearSystem.LinearSystem.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>
|
|
50
51
|
</div></section>
|
|
51
52
|
<section class="tsd-index-section">
|
|
52
53
|
<h3 class="tsd-index-heading">Methods</h3>
|
|
53
|
-
<div class="tsd-index-list"><a href="algebra_linearSystem.LinearSystem.html#_findLetters" class="tsd-index-link tsd-
|
|
54
|
-
<a href="algebra_linearSystem.LinearSystem.html#_linearReduction" class="tsd-index-link tsd-
|
|
55
|
-
<a href="algebra_linearSystem.LinearSystem.html#_solveOneLetter" class="tsd-index-link tsd-
|
|
56
|
-
<a href="algebra_linearSystem.LinearSystem.html#buildTex" class="tsd-index-link
|
|
57
|
-
<a href="algebra_linearSystem.LinearSystem.html#clone" class="tsd-index-link
|
|
58
|
-
<a href="algebra_linearSystem.LinearSystem.html#mergeEquations" class="tsd-index-link
|
|
59
|
-
<a href="algebra_linearSystem.LinearSystem.html#parse" class="tsd-index-link
|
|
60
|
-
<a href="algebra_linearSystem.LinearSystem.html#reorder" class="tsd-index-link
|
|
61
|
-
<a href="algebra_linearSystem.LinearSystem.html#solve" class="tsd-index-link
|
|
62
|
-
<a href="algebra_linearSystem.LinearSystem.html#stepTex" class="tsd-index-link
|
|
54
|
+
<div class="tsd-index-list"><a href="algebra_linearSystem.LinearSystem.html#_findLetters" 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/>Letters</span></a>
|
|
55
|
+
<a href="algebra_linearSystem.LinearSystem.html#_linearReduction" class="tsd-index-link tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>_linear<wbr/>Reduction</span></a>
|
|
56
|
+
<a href="algebra_linearSystem.LinearSystem.html#_solveOneLetter" 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/>One<wbr/>Letter</span></a>
|
|
57
|
+
<a href="algebra_linearSystem.LinearSystem.html#buildTex" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>build<wbr/>Tex</span></a>
|
|
58
|
+
<a href="algebra_linearSystem.LinearSystem.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>
|
|
59
|
+
<a href="algebra_linearSystem.LinearSystem.html#mergeEquations" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>merge<wbr/>Equations</span></a>
|
|
60
|
+
<a href="algebra_linearSystem.LinearSystem.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>
|
|
61
|
+
<a href="algebra_linearSystem.LinearSystem.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>
|
|
62
|
+
<a href="algebra_linearSystem.LinearSystem.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>
|
|
63
|
+
<a href="algebra_linearSystem.LinearSystem.html#stepTex" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>step<wbr/>Tex</span></a>
|
|
63
64
|
</div></section></div></details></section></section>
|
|
64
65
|
<section class="tsd-panel-group tsd-member-group">
|
|
65
66
|
<h2>Constructors</h2>
|
|
66
|
-
<section class="tsd-panel tsd-member
|
|
67
|
-
<h3 class="tsd-anchor-link"><span>constructor</span><a href="#constructor" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
68
|
-
<ul class="tsd-signatures
|
|
69
|
-
<li class="tsd-signature tsd-anchor-link" id="constructor.new_LinearSystem"
|
|
67
|
+
<section class="tsd-panel tsd-member"><a id="constructor" class="tsd-anchor"></a>
|
|
68
|
+
<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>
|
|
69
|
+
<ul class="tsd-signatures">
|
|
70
|
+
<li class="tsd-signature tsd-anchor-link" id="constructor.new_LinearSystem"><span class="tsd-kind-constructor-signature">new <wbr/>Linear<wbr/>System</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">equationStrings</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_linearSystem.LinearSystem.html" class="tsd-signature-type tsd-kind-class">LinearSystem</a><a href="#constructor.new_LinearSystem" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
70
71
|
<li class="tsd-description">
|
|
71
72
|
<div class="tsd-parameters">
|
|
72
73
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
73
74
|
<ul class="tsd-parameter-list">
|
|
74
75
|
<li>
|
|
75
|
-
<h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span>equationStrings
|
|
76
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_linearSystem.LinearSystem.html" class="tsd-signature-type
|
|
76
|
+
<h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span><span class="tsd-kind-parameter">equationStrings</span>: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
|
|
77
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_linearSystem.LinearSystem.html" class="tsd-signature-type tsd-kind-class">LinearSystem</a></h4><aside class="tsd-sources">
|
|
77
78
|
<ul>
|
|
78
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
79
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L25">algebra/linearSystem.ts:25</a></li></ul></aside></li></ul></section></section>
|
|
79
80
|
<section class="tsd-panel-group tsd-member-group">
|
|
80
81
|
<h2>Properties</h2>
|
|
81
|
-
<section class="tsd-panel tsd-member tsd-
|
|
82
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_equations</span><a href="#_equations" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
83
|
-
<div class="tsd-signature">_equations
|
|
82
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_equations" class="tsd-anchor"></a>
|
|
83
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_equations</span><a href="#_equations" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
84
|
+
<div class="tsd-signature"><span class="tsd-kind-property">_equations</span><span class="tsd-signature-symbol">:</span> <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources">
|
|
84
85
|
<ul>
|
|
85
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
86
|
-
<section class="tsd-panel tsd-member tsd-
|
|
87
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_letters</span><a href="#_letters" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
88
|
-
<div class="tsd-signature">_letters
|
|
86
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L10">algebra/linearSystem.ts:10</a></li></ul></aside></section>
|
|
87
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_letters" class="tsd-anchor"></a>
|
|
88
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <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>
|
|
89
|
+
<div class="tsd-signature"><span class="tsd-kind-property">_letters</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources">
|
|
89
90
|
<ul>
|
|
90
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
91
|
-
<section class="tsd-panel tsd-member tsd-
|
|
92
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_resolution<wbr/>Steps</span><a href="#_resolutionSteps" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
93
|
-
<div class="tsd-signature">_resolution<wbr/>Steps
|
|
91
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L12">algebra/linearSystem.ts:12</a></li></ul></aside></section>
|
|
92
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_resolutionSteps" class="tsd-anchor"></a>
|
|
93
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_resolution<wbr/>Steps</span><a href="#_resolutionSteps" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
94
|
+
<div class="tsd-signature"><span class="tsd-kind-property">_resolution<wbr/>Steps</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-symbol">{ </span><br/><span> </span><span class="tsd-kind-property">equations</span><span class="tsd-signature-symbol">: </span><a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span> </span><span class="tsd-kind-property">operations</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</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-signature-symbol">}</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></div>
|
|
94
95
|
<div class="tsd-type-declaration">
|
|
95
96
|
<h4>Type declaration</h4>
|
|
96
97
|
<ul class="tsd-parameters">
|
|
97
98
|
<li class="tsd-parameter-index-signature">
|
|
98
|
-
<h5><span class="tsd-signature-symbol">[</span>key
|
|
99
|
+
<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-symbol">{ </span><br/><span> </span><span class="tsd-kind-property">equations</span><span class="tsd-signature-symbol">: </span><a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span> </span><span class="tsd-kind-property">operations</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">[]</span></h5></li></ul></div><aside class="tsd-sources">
|
|
99
100
|
<ul>
|
|
100
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
101
|
-
<section class="tsd-panel tsd-member tsd-
|
|
102
|
-
<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
|
|
103
|
-
<div class="tsd-signature">_solutions
|
|
101
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L16">algebra/linearSystem.ts:16</a></li></ul></aside></section>
|
|
102
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_solutions" class="tsd-anchor"></a>
|
|
103
|
+
<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>
|
|
104
|
+
<div class="tsd-signature"><span class="tsd-kind-property">_solutions</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{ </span><br/><span> </span>[<span class="tsd-kind-index-signature">letter</span>: <span class="tsd-signature-type">string</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><br/><span class="tsd-signature-symbol">}</span></div>
|
|
104
105
|
<div class="tsd-type-declaration">
|
|
105
106
|
<h4>Type declaration</h4>
|
|
106
107
|
<ul class="tsd-parameters">
|
|
107
108
|
<li class="tsd-parameter-index-signature">
|
|
108
|
-
<h5><span class="tsd-signature-symbol">[</span>letter
|
|
109
|
+
<h5><span class="tsd-signature-symbol">[</span><span class="tsd-kind-parameter">letter</span>: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">]: </span><a href="../interfaces/algebra_equation.ISolution.html" class="tsd-signature-type tsd-kind-interface">ISolution</a></h5></li></ul></div><aside class="tsd-sources">
|
|
109
110
|
<ul>
|
|
110
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
111
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L23">algebra/linearSystem.ts:23</a></li></ul></aside></section></section>
|
|
111
112
|
<section class="tsd-panel-group tsd-member-group">
|
|
112
113
|
<h2>Accessors</h2>
|
|
113
|
-
<section class="tsd-panel tsd-member
|
|
114
|
-
<h3 class="tsd-anchor-link"><span>equations</span><a href="#equations" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
115
|
-
<ul class="tsd-signatures
|
|
116
|
-
<li class="tsd-signature" id="equations.equations-1"><span class="tsd-signature-symbol">get</span> equations<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
|
|
114
|
+
<section class="tsd-panel tsd-member"><a id="equations" class="tsd-anchor"></a>
|
|
115
|
+
<h3 class="tsd-anchor-link"><span>equations</span><a href="#equations" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
116
|
+
<ul class="tsd-signatures">
|
|
117
|
+
<li class="tsd-signature" id="equations.equations-1"><span class="tsd-signature-symbol">get</span> equations<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><span class="tsd-signature-symbol">[]</span></li>
|
|
117
118
|
<li class="tsd-description">
|
|
118
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type
|
|
119
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
|
119
120
|
<ul>
|
|
120
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
121
|
-
<li class="tsd-signature" id="equations.equations-2"><span class="tsd-signature-symbol">set</span> equations<span class="tsd-signature-symbol">(</span
|
|
121
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L40">algebra/linearSystem.ts:40</a></li></ul></aside></li>
|
|
122
|
+
<li class="tsd-signature" id="equations.equations-2"><span class="tsd-signature-symbol">set</span> equations<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>
|
|
122
123
|
<li class="tsd-description">
|
|
123
124
|
<div class="tsd-parameters">
|
|
124
125
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
125
126
|
<ul class="tsd-parameter-list">
|
|
126
127
|
<li>
|
|
127
|
-
<h5>value
|
|
128
|
+
<h5><span class="tsd-kind-parameter">value</span>: <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
|
|
128
129
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
129
130
|
<ul>
|
|
130
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
131
|
-
<section class="tsd-panel tsd-member
|
|
132
|
-
<h3 class="tsd-anchor-link"><span>is<wbr/>Solvable</span><a href="#isSolvable" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
133
|
-
<ul class="tsd-signatures
|
|
131
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L44">algebra/linearSystem.ts:44</a></li></ul></aside></li></ul></section>
|
|
132
|
+
<section class="tsd-panel tsd-member"><a id="isSolvable" class="tsd-anchor"></a>
|
|
133
|
+
<h3 class="tsd-anchor-link"><span>is<wbr/>Solvable</span><a href="#isSolvable" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
134
|
+
<ul class="tsd-signatures">
|
|
134
135
|
<li class="tsd-signature" id="isSolvable.isSolvable-1"><span class="tsd-signature-symbol">get</span> isSolvable<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>
|
|
135
136
|
<li class="tsd-description">
|
|
136
137
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
137
138
|
<ul>
|
|
138
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
139
|
-
<section class="tsd-panel tsd-member
|
|
140
|
-
<h3 class="tsd-anchor-link"><span>letters</span><a href="#letters" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
141
|
-
<ul class="tsd-signatures
|
|
139
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L56">algebra/linearSystem.ts:56</a></li></ul></aside></li></ul></section>
|
|
140
|
+
<section class="tsd-panel tsd-member"><a id="letters" class="tsd-anchor"></a>
|
|
141
|
+
<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>
|
|
142
|
+
<ul class="tsd-signatures">
|
|
142
143
|
<li class="tsd-signature" id="letters.letters-1"><span class="tsd-signature-symbol">get</span> letters<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>
|
|
143
144
|
<li class="tsd-description">
|
|
144
145
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
145
146
|
<ul>
|
|
146
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
147
|
-
<li class="tsd-signature" id="letters.letters-2"><span class="tsd-signature-symbol">set</span> letters<span class="tsd-signature-symbol">(</span
|
|
147
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L48">algebra/linearSystem.ts:48</a></li></ul></aside></li>
|
|
148
|
+
<li class="tsd-signature" id="letters.letters-2"><span class="tsd-signature-symbol">set</span> letters<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>
|
|
148
149
|
<li class="tsd-description">
|
|
149
150
|
<div class="tsd-parameters">
|
|
150
151
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
151
152
|
<ul class="tsd-parameter-list">
|
|
152
153
|
<li>
|
|
153
|
-
<h5>value
|
|
154
|
+
<h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
154
155
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
155
156
|
<ul>
|
|
156
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
157
|
-
<section class="tsd-panel tsd-member
|
|
158
|
-
<h3 class="tsd-anchor-link"><span>resolution<wbr/>Steps</span><a href="#resolutionSteps" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
159
|
-
<ul class="tsd-signatures
|
|
160
|
-
<li class="tsd-signature" id="resolutionSteps.resolutionSteps-1"><span class="tsd-signature-symbol">get</span> resolutionSteps<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">{ </span><br/><span> </span>[p
|
|
157
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L52">algebra/linearSystem.ts:52</a></li></ul></aside></li></ul></section>
|
|
158
|
+
<section class="tsd-panel tsd-member"><a id="resolutionSteps" class="tsd-anchor"></a>
|
|
159
|
+
<h3 class="tsd-anchor-link"><span>resolution<wbr/>Steps</span><a href="#resolutionSteps" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
160
|
+
<ul class="tsd-signatures">
|
|
161
|
+
<li class="tsd-signature" id="resolutionSteps.resolutionSteps-1"><span class="tsd-signature-symbol">get</span> resolutionSteps<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">{ </span><br/><span> </span>[<span class="tsd-kind-index-signature">p</span>: <span class="tsd-signature-type">string</span>]<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">{ </span><br/><span> </span><span class="tsd-kind-property">equations</span><span class="tsd-signature-symbol">: </span><a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span> </span><span class="tsd-kind-property">operations</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</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-signature-symbol">}</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></li>
|
|
161
162
|
<li class="tsd-description">
|
|
162
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">{ </span><br/><span> </span>[p
|
|
163
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">{ </span><br/><span> </span>[<span class="tsd-kind-index-signature">p</span>: <span class="tsd-signature-type">string</span>]<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">{ </span><br/><span> </span><span class="tsd-kind-property">equations</span><span class="tsd-signature-symbol">: </span><a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span> </span><span class="tsd-kind-property">operations</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</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-signature-symbol">}</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></h4>
|
|
163
164
|
<ul class="tsd-parameters">
|
|
164
165
|
<li class="tsd-parameter-index-signature">
|
|
165
|
-
<h5><span class="tsd-signature-symbol">[</span>p
|
|
166
|
+
<h5><span class="tsd-signature-symbol">[</span><span class="tsd-kind-parameter">p</span>: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">]: </span><span class="tsd-signature-symbol">{ </span><br/><span> </span><span class="tsd-kind-property">equations</span><span class="tsd-signature-symbol">: </span><a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span> </span><span class="tsd-kind-property">operations</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">[]</span></h5></li></ul><aside class="tsd-sources">
|
|
166
167
|
<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>solution</span><a href="#solution" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
170
|
-
<ul class="tsd-signatures
|
|
168
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L195">algebra/linearSystem.ts:195</a></li></ul></aside></li></ul></section>
|
|
169
|
+
<section class="tsd-panel tsd-member"><a id="solution" class="tsd-anchor"></a>
|
|
170
|
+
<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>
|
|
171
|
+
<ul class="tsd-signatures">
|
|
171
172
|
<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>
|
|
172
173
|
<li class="tsd-description">
|
|
173
174
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
174
175
|
<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>
|
|
178
|
-
<ul class="tsd-signatures
|
|
176
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L84">algebra/linearSystem.ts:84</a></li></ul></aside></li></ul></section>
|
|
177
|
+
<section class="tsd-panel tsd-member"><a id="solutionAsDisplay" class="tsd-anchor"></a>
|
|
178
|
+
<h3 class="tsd-anchor-link"><span>solution<wbr/>As<wbr/>Display</span><a href="#solutionAsDisplay" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
179
|
+
<ul class="tsd-signatures">
|
|
180
|
+
<li class="tsd-signature" id="solutionAsDisplay.solutionAsDisplay-1"><span class="tsd-signature-symbol">get</span> solutionAsDisplay<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>
|
|
181
|
+
<li class="tsd-description">
|
|
182
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
183
|
+
<ul>
|
|
184
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L104">algebra/linearSystem.ts:104</a></li></ul></aside></li></ul></section>
|
|
185
|
+
<section class="tsd-panel tsd-member"><a id="tex" class="tsd-anchor"></a>
|
|
186
|
+
<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>
|
|
187
|
+
<ul class="tsd-signatures">
|
|
179
188
|
<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>
|
|
180
189
|
<li class="tsd-description">
|
|
181
190
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
182
191
|
<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>variables</span><a href="#variables" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
186
|
-
<ul class="tsd-signatures
|
|
192
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L73">algebra/linearSystem.ts:73</a></li></ul></aside></li></ul></section>
|
|
193
|
+
<section class="tsd-panel tsd-member"><a id="variables" class="tsd-anchor"></a>
|
|
194
|
+
<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>
|
|
195
|
+
<ul class="tsd-signatures">
|
|
187
196
|
<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>
|
|
188
197
|
<li class="tsd-description">
|
|
189
198
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
|
190
199
|
<ul>
|
|
191
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
200
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L69">algebra/linearSystem.ts:69</a></li></ul></aside></li></ul></section></section>
|
|
192
201
|
<section class="tsd-panel-group tsd-member-group">
|
|
193
202
|
<h2>Methods</h2>
|
|
194
|
-
<section class="tsd-panel tsd-member tsd-
|
|
195
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_find<wbr/>Letters</span><a href="#_findLetters" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
196
|
-
<ul class="tsd-signatures tsd-
|
|
197
|
-
<li class="tsd-signature tsd-anchor-link" id="_findLetters._findLetters-1">_find<wbr/>Letters
|
|
203
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_findLetters" class="tsd-anchor"></a>
|
|
204
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_find<wbr/>Letters</span><a href="#_findLetters" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
205
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
206
|
+
<li class="tsd-signature tsd-anchor-link" id="_findLetters._findLetters-1"><span class="tsd-kind-call-signature">_find<wbr/>Letters</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_linearSystem.LinearSystem.html" class="tsd-signature-type tsd-kind-class">LinearSystem</a><a href="#_findLetters._findLetters-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
198
207
|
<li class="tsd-description">
|
|
199
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_linearSystem.LinearSystem.html" class="tsd-signature-type
|
|
208
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_linearSystem.LinearSystem.html" class="tsd-signature-type tsd-kind-class">LinearSystem</a></h4><aside class="tsd-sources">
|
|
200
209
|
<ul>
|
|
201
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
202
|
-
<section class="tsd-panel tsd-member tsd-
|
|
203
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_linear<wbr/>Reduction</span><a href="#_linearReduction" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
204
|
-
<ul class="tsd-signatures tsd-
|
|
205
|
-
<li class="tsd-signature tsd-anchor-link" id="_linearReduction._linearReduction-1"
|
|
210
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L260">algebra/linearSystem.ts:260</a></li></ul></aside></li></ul></section>
|
|
211
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_linearReduction" class="tsd-anchor"></a>
|
|
212
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_linear<wbr/>Reduction</span><a href="#_linearReduction" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
213
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
214
|
+
<li class="tsd-signature tsd-anchor-link" id="_linearReduction._linearReduction-1"><span class="tsd-kind-call-signature">_linear<wbr/>Reduction</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">eq1</span>, <span class="tsd-kind-parameter">eq2</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><br/><span> </span><span class="tsd-kind-property">factors</span><span class="tsd-signature-symbol">: </span><a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span> </span><span class="tsd-kind-property">merged</span><span class="tsd-signature-symbol">: </span><a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span><a href="#_linearReduction._linearReduction-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
206
215
|
<li class="tsd-description">
|
|
207
216
|
<div class="tsd-parameters">
|
|
208
217
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
209
218
|
<ul class="tsd-parameter-list">
|
|
210
219
|
<li>
|
|
211
|
-
<h5>eq1
|
|
220
|
+
<h5><span class="tsd-kind-parameter">eq1</span>: <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a></h5></li>
|
|
212
221
|
<li>
|
|
213
|
-
<h5>eq2
|
|
222
|
+
<h5><span class="tsd-kind-parameter">eq2</span>: <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a></h5></li>
|
|
214
223
|
<li>
|
|
215
|
-
<h5>letter
|
|
216
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">{ </span><br/><span> </span>factors
|
|
224
|
+
<h5><span class="tsd-kind-parameter">letter</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
225
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">{ </span><br/><span> </span><span class="tsd-kind-property">factors</span><span class="tsd-signature-symbol">: </span><a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span> </span><span class="tsd-kind-property">merged</span><span class="tsd-signature-symbol">: </span><a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></h4>
|
|
217
226
|
<ul class="tsd-parameters">
|
|
218
227
|
<li class="tsd-parameter">
|
|
219
|
-
<h5>factors
|
|
228
|
+
<h5><span class="tsd-kind-property">factors</span><span class="tsd-signature-symbol">: </span><a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a><span class="tsd-signature-symbol">[]</span></h5></li>
|
|
220
229
|
<li class="tsd-parameter">
|
|
221
|
-
<h5>merged
|
|
230
|
+
<h5><span class="tsd-kind-property">merged</span><span class="tsd-signature-symbol">: </span><a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a></h5></li></ul><aside class="tsd-sources">
|
|
222
231
|
<ul>
|
|
223
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
224
|
-
<section class="tsd-panel tsd-member tsd-
|
|
225
|
-
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_solve<wbr/>One<wbr/>Letter</span><a href="#_solveOneLetter" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
226
|
-
<ul class="tsd-signatures tsd-
|
|
227
|
-
<li class="tsd-signature tsd-anchor-link" id="_solveOneLetter._solveOneLetter-1">_solve<wbr/>One<wbr/>Letter
|
|
232
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L273">algebra/linearSystem.ts:273</a></li></ul></aside></li></ul></section>
|
|
233
|
+
<section class="tsd-panel tsd-member tsd-is-private"><a id="_solveOneLetter" class="tsd-anchor"></a>
|
|
234
|
+
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_solve<wbr/>One<wbr/>Letter</span><a href="#_solveOneLetter" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
235
|
+
<ul class="tsd-signatures tsd-is-private">
|
|
236
|
+
<li class="tsd-signature tsd-anchor-link" id="_solveOneLetter._solveOneLetter-1"><span class="tsd-kind-call-signature">_solve<wbr/>One<wbr/>Letter</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">letter</span>, <span class="tsd-kind-parameter">withResolution</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><a href="#_solveOneLetter._solveOneLetter-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
228
237
|
<li class="tsd-description"><code class="tsd-tag ts-flagPrivate">Private</code>
|
|
229
238
|
<div class="tsd-comment tsd-typography"><p>Linear reduction of the equations to have only one letter</p>
|
|
230
239
|
</div>
|
|
@@ -232,107 +241,110 @@
|
|
|
232
241
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
233
242
|
<ul class="tsd-parameter-list">
|
|
234
243
|
<li>
|
|
235
|
-
<h5>letter
|
|
244
|
+
<h5><span class="tsd-kind-parameter">letter</span>: <span class="tsd-signature-type">string</span></h5>
|
|
236
245
|
<div class="tsd-comment tsd-typography"><p>letter to isolate</p>
|
|
237
|
-
</div
|
|
246
|
+
</div>
|
|
247
|
+
<div class="tsd-comment tsd-typography"></div></li>
|
|
238
248
|
<li>
|
|
239
|
-
<h5>withResolution
|
|
240
|
-
<h4 class="tsd-returns-title">Returns <a href="../interfaces/algebra_equation.ISolution.html" class="tsd-signature-type
|
|
249
|
+
<h5><span class="tsd-kind-parameter">withResolution</span>: <span class="tsd-signature-type">boolean</span></h5></li></ul></div>
|
|
250
|
+
<h4 class="tsd-returns-title">Returns <a href="../interfaces/algebra_equation.ISolution.html" class="tsd-signature-type tsd-kind-interface">ISolution</a></h4>
|
|
251
|
+
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
|
|
241
252
|
<ul>
|
|
242
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
243
|
-
<section class="tsd-panel tsd-member
|
|
244
|
-
<h3 class="tsd-anchor-link"><span>build<wbr/>Tex</span><a href="#buildTex" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
245
|
-
<ul class="tsd-signatures
|
|
246
|
-
<li class="tsd-signature tsd-anchor-link" id="buildTex.buildTex-1"
|
|
253
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L304">algebra/linearSystem.ts:304</a></li></ul></aside></li></ul></section>
|
|
254
|
+
<section class="tsd-panel tsd-member"><a id="buildTex" class="tsd-anchor"></a>
|
|
255
|
+
<h3 class="tsd-anchor-link"><span>build<wbr/>Tex</span><a href="#buildTex" 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 tsd-anchor-link" id="buildTex.buildTex-1"><span class="tsd-kind-call-signature">build<wbr/>Tex</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">equations</span>, <span class="tsd-kind-parameter">operators</span><span class="tsd-signature-symbol">?</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><a href="#buildTex.buildTex-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
247
258
|
<li class="tsd-description">
|
|
248
259
|
<div class="tsd-parameters">
|
|
249
260
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
250
261
|
<ul class="tsd-parameter-list">
|
|
251
262
|
<li>
|
|
252
|
-
<h5>equations
|
|
263
|
+
<h5><span class="tsd-kind-parameter">equations</span>: <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a><span class="tsd-signature-symbol">[]</span></h5></li>
|
|
253
264
|
<li>
|
|
254
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> operators
|
|
265
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">operators</span>: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
|
|
255
266
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
256
267
|
<ul>
|
|
257
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
258
|
-
<section class="tsd-panel tsd-member
|
|
259
|
-
<h3 class="tsd-anchor-link"><span>clone</span><a href="#clone" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
260
|
-
<ul class="tsd-signatures
|
|
261
|
-
<li class="tsd-signature tsd-anchor-link" id="clone.clone-1">clone
|
|
268
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L124">algebra/linearSystem.ts:124</a></li></ul></aside></li></ul></section>
|
|
269
|
+
<section class="tsd-panel tsd-member"><a id="clone" class="tsd-anchor"></a>
|
|
270
|
+
<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>
|
|
271
|
+
<ul class="tsd-signatures">
|
|
272
|
+
<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_linearSystem.LinearSystem.html" class="tsd-signature-type tsd-kind-class">LinearSystem</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>
|
|
262
273
|
<li class="tsd-description">
|
|
263
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_linearSystem.LinearSystem.html" class="tsd-signature-type
|
|
274
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_linearSystem.LinearSystem.html" class="tsd-signature-type tsd-kind-class">LinearSystem</a></h4><aside class="tsd-sources">
|
|
264
275
|
<ul>
|
|
265
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
266
|
-
<section class="tsd-panel tsd-member
|
|
267
|
-
<h3 class="tsd-anchor-link"><span>merge<wbr/>Equations</span><a href="#mergeEquations" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
268
|
-
<ul class="tsd-signatures
|
|
269
|
-
<li class="tsd-signature tsd-anchor-link" id="mergeEquations.mergeEquations-1"
|
|
276
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L211">algebra/linearSystem.ts:211</a></li></ul></aside></li></ul></section>
|
|
277
|
+
<section class="tsd-panel tsd-member"><a id="mergeEquations" class="tsd-anchor"></a>
|
|
278
|
+
<h3 class="tsd-anchor-link"><span>merge<wbr/>Equations</span><a href="#mergeEquations" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
279
|
+
<ul class="tsd-signatures">
|
|
280
|
+
<li class="tsd-signature tsd-anchor-link" id="mergeEquations.mergeEquations-1"><span class="tsd-kind-call-signature">merge<wbr/>Equations</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">eq1</span>, <span class="tsd-kind-parameter">eq2</span>, <span class="tsd-kind-parameter">factor1</span>, <span class="tsd-kind-parameter">factor2</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="#mergeEquations.mergeEquations-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
270
281
|
<li class="tsd-description">
|
|
271
282
|
<div class="tsd-parameters">
|
|
272
283
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
273
284
|
<ul class="tsd-parameter-list">
|
|
274
285
|
<li>
|
|
275
|
-
<h5>eq1
|
|
286
|
+
<h5><span class="tsd-kind-parameter">eq1</span>: <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a></h5></li>
|
|
276
287
|
<li>
|
|
277
|
-
<h5>eq2
|
|
288
|
+
<h5><span class="tsd-kind-parameter">eq2</span>: <a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a></h5></li>
|
|
278
289
|
<li>
|
|
279
|
-
<h5>factor1
|
|
290
|
+
<h5><span class="tsd-kind-parameter">factor1</span>: <a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a></h5></li>
|
|
280
291
|
<li>
|
|
281
|
-
<h5>factor2
|
|
282
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_equation.Equation.html" class="tsd-signature-type
|
|
292
|
+
<h5><span class="tsd-kind-parameter">factor2</span>: <a href="coefficients_fraction.Fraction.html" class="tsd-signature-type tsd-kind-class">Fraction</a></h5></li></ul></div>
|
|
293
|
+
<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">
|
|
283
294
|
<ul>
|
|
284
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
285
|
-
<section class="tsd-panel tsd-member
|
|
286
|
-
<h3 class="tsd-anchor-link"><span>parse</span><a href="#parse" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
287
|
-
<ul class="tsd-signatures
|
|
288
|
-
<li class="tsd-signature tsd-anchor-link" id="parse.parse-1"
|
|
295
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L247">algebra/linearSystem.ts:247</a></li></ul></aside></li></ul></section>
|
|
296
|
+
<section class="tsd-panel tsd-member"><a id="parse" class="tsd-anchor"></a>
|
|
297
|
+
<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>
|
|
298
|
+
<ul class="tsd-signatures">
|
|
299
|
+
<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-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_linearSystem.LinearSystem.html" class="tsd-signature-type tsd-kind-class">LinearSystem</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>
|
|
289
300
|
<li class="tsd-description">
|
|
290
301
|
<div class="tsd-parameters">
|
|
291
302
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
292
303
|
<ul class="tsd-parameter-list">
|
|
293
304
|
<li>
|
|
294
|
-
<h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span>equations
|
|
295
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_linearSystem.LinearSystem.html" class="tsd-signature-type
|
|
305
|
+
<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-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><a href="algebra_equation.Equation.html" class="tsd-signature-type tsd-kind-class">Equation</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
|
|
306
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_linearSystem.LinearSystem.html" class="tsd-signature-type tsd-kind-class">LinearSystem</a></h4><aside class="tsd-sources">
|
|
296
307
|
<ul>
|
|
297
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
298
|
-
<section class="tsd-panel tsd-member
|
|
299
|
-
<h3 class="tsd-anchor-link"><span>reorder</span><a href="#reorder" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
300
|
-
<ul class="tsd-signatures
|
|
301
|
-
<li class="tsd-signature tsd-anchor-link" id="reorder.reorder-1">reorder
|
|
308
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L203">algebra/linearSystem.ts:203</a></li></ul></aside></li></ul></section>
|
|
309
|
+
<section class="tsd-panel tsd-member"><a id="reorder" class="tsd-anchor"></a>
|
|
310
|
+
<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>
|
|
311
|
+
<ul class="tsd-signatures">
|
|
312
|
+
<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-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_linearSystem.LinearSystem.html" class="tsd-signature-type tsd-kind-class">LinearSystem</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>
|
|
302
313
|
<li class="tsd-description">
|
|
303
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_linearSystem.LinearSystem.html" class="tsd-signature-type
|
|
314
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_linearSystem.LinearSystem.html" class="tsd-signature-type tsd-kind-class">LinearSystem</a></h4><aside class="tsd-sources">
|
|
304
315
|
<ul>
|
|
305
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
306
|
-
<section class="tsd-panel tsd-member
|
|
307
|
-
<h3 class="tsd-anchor-link"><span>solve</span><a href="#solve" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
308
|
-
<ul class="tsd-signatures
|
|
309
|
-
<li class="tsd-signature tsd-anchor-link" id="solve.solve-1">solve
|
|
316
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L216">algebra/linearSystem.ts:216</a></li></ul></aside></li></ul></section>
|
|
317
|
+
<section class="tsd-panel tsd-member"><a id="solve" class="tsd-anchor"></a>
|
|
318
|
+
<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>
|
|
319
|
+
<ul class="tsd-signatures">
|
|
320
|
+
<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-kind-parameter">withResolution</span><span class="tsd-signature-symbol">?</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="algebra_linearSystem.LinearSystem.html" class="tsd-signature-type tsd-kind-class">LinearSystem</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>
|
|
310
321
|
<li class="tsd-description">
|
|
311
322
|
<div class="tsd-parameters">
|
|
312
323
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
313
324
|
<ul class="tsd-parameter-list">
|
|
314
325
|
<li>
|
|
315
|
-
<h5><code class="tsd-tag ts-flagOptional">Optional</code> withResolution
|
|
316
|
-
<h4 class="tsd-returns-title">Returns <a href="algebra_linearSystem.LinearSystem.html" class="tsd-signature-type
|
|
326
|
+
<h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">withResolution</span>: <span class="tsd-signature-type">boolean</span></h5></li></ul></div>
|
|
327
|
+
<h4 class="tsd-returns-title">Returns <a href="algebra_linearSystem.LinearSystem.html" class="tsd-signature-type tsd-kind-class">LinearSystem</a></h4><aside class="tsd-sources">
|
|
317
328
|
<ul>
|
|
318
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
319
|
-
<section class="tsd-panel tsd-member
|
|
320
|
-
<h3 class="tsd-anchor-link"><span>step<wbr/>Tex</span><a href="#stepTex" aria-label="Permalink" class="tsd-anchor-icon"><svg
|
|
321
|
-
<ul class="tsd-signatures
|
|
322
|
-
<li class="tsd-signature tsd-anchor-link" id="stepTex.stepTex-1"
|
|
329
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L227">algebra/linearSystem.ts:227</a></li></ul></aside></li></ul></section>
|
|
330
|
+
<section class="tsd-panel tsd-member"><a id="stepTex" class="tsd-anchor"></a>
|
|
331
|
+
<h3 class="tsd-anchor-link"><span>step<wbr/>Tex</span><a href="#stepTex" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
|
|
332
|
+
<ul class="tsd-signatures">
|
|
333
|
+
<li class="tsd-signature tsd-anchor-link" id="stepTex.stepTex-1"><span class="tsd-kind-call-signature">step<wbr/>Tex</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">string</span><a href="#stepTex.stepTex-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
|
|
323
334
|
<li class="tsd-description">
|
|
324
335
|
<div class="tsd-parameters">
|
|
325
336
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
326
337
|
<ul class="tsd-parameter-list">
|
|
327
338
|
<li>
|
|
328
|
-
<h5>letter
|
|
339
|
+
<h5><span class="tsd-kind-parameter">letter</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
329
340
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
330
341
|
<ul>
|
|
331
|
-
<li>Defined in <a href="https://github.com/basilgass/
|
|
332
|
-
<div class="col-
|
|
342
|
+
<li>Defined in <a href="https://github.com/basilgass/PiMath/blob/e13554f/src/maths/algebra/linearSystem.ts#L177">algebra/linearSystem.ts:177</a></li></ul></aside></li></ul></section></section></div>
|
|
343
|
+
<div class="col-sidebar">
|
|
344
|
+
<div class="page-menu">
|
|
333
345
|
<div class="tsd-navigation settings">
|
|
334
346
|
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
|
|
335
|
-
<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>
|
|
347
|
+
<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>
|
|
336
348
|
<div class="tsd-accordion-details">
|
|
337
349
|
<div class="tsd-filter-visibility">
|
|
338
350
|
<h4 class="uppercase">Member Visibility</h4><form>
|
|
@@ -342,56 +354,55 @@
|
|
|
342
354
|
<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>
|
|
343
355
|
<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>
|
|
344
356
|
<div class="tsd-theme-toggle">
|
|
345
|
-
<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>
|
|
346
|
-
<
|
|
347
|
-
<
|
|
348
|
-
<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>
|
|
357
|
+
<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>
|
|
358
|
+
<details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary">
|
|
359
|
+
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="#icon-chevronDown"></use></svg>On This Page</h3></summary>
|
|
349
360
|
<div class="tsd-accordion-details">
|
|
350
361
|
<ul>
|
|
351
|
-
<li class="
|
|
352
|
-
<
|
|
353
|
-
<li class="tsd-kind-
|
|
354
|
-
<li class="tsd-kind-
|
|
355
|
-
<li class="tsd-kind-
|
|
356
|
-
<li class="tsd-kind-
|
|
357
|
-
<li class="tsd-kind-
|
|
358
|
-
<li class="
|
|
359
|
-
<li class="tsd-kind-
|
|
360
|
-
<li class="tsd-kind-
|
|
361
|
-
<li class="tsd-kind-
|
|
362
|
-
<li class="tsd-kind-
|
|
363
|
-
<li class="tsd-kind-
|
|
364
|
-
<li class="tsd-kind-
|
|
365
|
-
<li class="tsd-kind-
|
|
366
|
-
<li class="tsd-kind-
|
|
367
|
-
<li class="tsd-kind-
|
|
368
|
-
<li class="tsd-kind-
|
|
369
|
-
<
|
|
370
|
-
<
|
|
371
|
-
<li
|
|
372
|
-
<
|
|
373
|
-
<li
|
|
374
|
-
<
|
|
375
|
-
<
|
|
376
|
-
<
|
|
377
|
-
<li
|
|
378
|
-
<li
|
|
379
|
-
<li
|
|
380
|
-
<li
|
|
381
|
-
<li
|
|
382
|
-
<li
|
|
383
|
-
<
|
|
384
|
-
<
|
|
385
|
-
<
|
|
386
|
-
<li
|
|
387
|
-
<li
|
|
388
|
-
<li
|
|
389
|
-
<li
|
|
390
|
-
<li
|
|
391
|
-
<li
|
|
392
|
-
<li
|
|
393
|
-
<li
|
|
394
|
-
<li
|
|
395
|
-
<div class="
|
|
362
|
+
<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>
|
|
363
|
+
<li><a href="#_equations" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_equations</span></a></li>
|
|
364
|
+
<li><a href="#_letters" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_letters</span></a></li>
|
|
365
|
+
<li><a href="#_resolutionSteps" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>_resolution<wbr/>Steps</span></a></li>
|
|
366
|
+
<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>
|
|
367
|
+
<li><a href="#equations" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>equations</span></a></li>
|
|
368
|
+
<li><a href="#isSolvable" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>is<wbr/>Solvable</span></a></li>
|
|
369
|
+
<li><a href="#letters" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>letters</span></a></li>
|
|
370
|
+
<li><a href="#resolutionSteps" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>resolution<wbr/>Steps</span></a></li>
|
|
371
|
+
<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>
|
|
372
|
+
<li><a href="#solutionAsDisplay" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>solution<wbr/>As<wbr/>Display</span></a></li>
|
|
373
|
+
<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>
|
|
374
|
+
<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>
|
|
375
|
+
<li><a href="#_findLetters" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>_find<wbr/>Letters</span></a></li>
|
|
376
|
+
<li><a href="#_linearReduction" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>_linear<wbr/>Reduction</span></a></li>
|
|
377
|
+
<li><a href="#_solveOneLetter" class="tsd-is-private"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>_solve<wbr/>One<wbr/>Letter</span></a></li>
|
|
378
|
+
<li><a href="#buildTex" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>build<wbr/>Tex</span></a></li>
|
|
379
|
+
<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>
|
|
380
|
+
<li><a href="#mergeEquations" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>merge<wbr/>Equations</span></a></li>
|
|
381
|
+
<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>
|
|
382
|
+
<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>
|
|
383
|
+
<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>
|
|
384
|
+
<li><a href="#stepTex" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>step<wbr/>Tex</span></a></li></ul></div></details></div>
|
|
385
|
+
<div class="site-menu">
|
|
386
|
+
<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>
|
|
387
|
+
<ul class="tsd-small-nested-navigation">
|
|
388
|
+
<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>
|
|
389
|
+
<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>
|
|
390
|
+
<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>
|
|
391
|
+
<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>
|
|
392
|
+
<li><a href="../modules/algebra_equation.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>algebra/equation</span></a></li>
|
|
393
|
+
<li>
|
|
394
|
+
<details class="tsd-index-accordion" open data-key="algebra/linearSystem"><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_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></summary>
|
|
395
|
+
<div class="tsd-accordion-details">
|
|
396
|
+
<ul class="tsd-nested-navigation">
|
|
397
|
+
<li><a href="algebra_linearSystem.LinearSystem.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>Linear<wbr/>System</span></a></li></ul></div></details></li>
|
|
398
|
+
<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>
|
|
399
|
+
<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>
|
|
400
|
+
<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>
|
|
401
|
+
<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>
|
|
402
|
+
<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>
|
|
403
|
+
<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>
|
|
404
|
+
<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>
|
|
405
|
+
<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>
|
|
406
|
+
<div class="tsd-generator">
|
|
396
407
|
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
|
|
397
|
-
<div class="overlay"></div
|
|
408
|
+
<div class="overlay"></div></body></html>
|