Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
218 lines (193 loc) · 4.98 KB

File metadata and controls

218 lines (193 loc) · 4.98 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
package symjava.relational;
import java.util.ArrayList;
import java.util.List;
import symjava.symbolic.Expr;
import symjava.symbolic.utils.Utils;
/**
* An object of Eq represents a equation like
* y = a*x+b
*
*/
public class Eq extends Relation {
Expr[] freeVars; //for example: x in y=a*x+b
Expr[] dependentVars; //for example: y in y=a*x+b
Expr[] params; //paramters in the equation, for example: a, b in y=a*x+b
Expr[] unknowns; //freeVars + dependentVars, for example: x, y in y=a*x+b
/**
* Create an equation like y=... without any parameters
* For example:
* Eq e = new Eq(y, 2*x+1); //y = 2*x+1
*
* @param lhs
* @param rhs
*/
public Eq(Expr lhs, Expr rhs) {
this.lhs = lhs;
this.rhs = rhs;
this.freeVars = Utils.extractSymbols(rhs).toArray(new Expr[0]);
this.params = new Expr[0];
this.dependentVars = Utils.extractSymbols(lhs).toArray(new Expr[0]);
setUnknowns();
}
/**
* Create an equation like y=...
* The free variables are specified on the right hand side (rhs).
* It may contain parameters on the right hand side and the paramters
* can be extracted automatically.
* For example:
* Eq e = Eq(y, a*x+b, new Expr[]{x});
* This will create equation y=a*x+b with
* freeVars = [x]
* params = [a,b]
* dependentVars = [y]
* unkonws = [x,y]
*
* @param lhs
* @param rhs
* @param freeVars
*/
public Eq(Expr lhs, Expr rhs, Expr[] freeVars) {
this.lhs = lhs;
this.rhs = rhs;
this.freeVars = freeVars;
this.dependentVars = Utils.extractSymbols(lhs).toArray(new Expr[0]);
//Find params
List<Expr> list = Utils.extractSymbols(rhs);
List<Expr> paramList = new ArrayList<Expr>();
for(Expr s : list) {
boolean skip = false;
for(int i=0; i<freeVars.length; i++) {
if(s.symEquals(freeVars[i])) {
skip = true;
break;
}
}
if(skip) continue;
paramList.add(s);
}
this.params = paramList.toArray(new Expr[0]);
setUnknowns();
}
public Eq(Expr lhs, Expr rhs, Expr[] freeVars, Expr[] params) {
this.lhs = lhs;
this.rhs = rhs;
this.freeVars = freeVars;
this.params = params;
//Find dependent variables
List<Expr> list = Utils.extractSymbols(lhs, rhs);
List<Expr> depList = new ArrayList<Expr>();
for(Expr s : list) {
boolean skip = false;
for(int i=0; i<freeVars.length; i++) {
if(s.symEquals(freeVars[i])) skip = true;
}
if(skip) continue;
if(params == null) continue;
for(int i=0; i<params.length; i++) {
if(s.symEquals(params[i])) skip = true;
}
if(skip) continue;
depList.add(s);
}
dependentVars = depList.toArray(new Expr[0]);
setUnknowns();
}
/**
*
* @param lhs
* @param rhs
* @param freeVars
* @param params
* @param dependentVars
*/
public Eq(Expr lhs, Expr rhs, Expr[] freeVars, Expr[] params, Expr[] dependentVars) {
this.lhs = lhs;
this.rhs = rhs;
this.freeVars = freeVars;
this.params = params;
this.dependentVars = dependentVars;
setUnknowns();
}
private void setUnknowns() {
this.unknowns = new Expr[freeVars.length + dependentVars.length];
int idx = 0;
for(int i=0; i<freeVars.length; i++) {
unknowns[idx++] = freeVars[i];
}
for(int i=0; i<dependentVars.length; i++) {
unknowns[idx++] = dependentVars[i];
}
}
public static Eq apply(Expr lhs, Expr rhs) {
return new Eq(lhs, rhs);
}
public static Eq apply(Expr lhs, Expr rhs, Expr[] freeVars) {
return new Eq(lhs, rhs, freeVars);
}
public static Eq apply(Expr lhs, Expr rhs, Expr[] freeVars, Expr[] params) {
return new Eq(lhs, rhs, freeVars, params);
}
public static Eq apply(Expr lhs, Expr rhs, Expr[] freeVars, Expr[] params, Expr[] dependentVars) {
return new Eq(lhs, rhs, freeVars, params, dependentVars);
}
public Expr subsLHS(Expr[] from, Expr[] to) {
Expr rlt = lhs;
for(int i=0; i<from.length; i++)
rlt = rlt.subs(from[i], to[i]);
return rlt;
}
public Expr subsRHS(Expr[] from, Expr[] to) {
Expr rlt = rhs;
for(int i=0; i<from.length; i++)
rlt = rlt.subs(from[i], to[i]);
return rlt;
}
public Expr subsLHS(Expr[] from, double[] to) {
Expr rlt = lhs;
for(int i=0; i<from.length; i++)
rlt = rlt.subs(from[i], to[i]);
return rlt;
}
public Expr subsRHS(Expr[] from, double[] to) {
Expr rlt = rhs;
for(int i=0; i<from.length; i++)
rlt = rlt.subs(from[i], to[i]);
return rlt;
}
public Eq subsUnknowns(double[] data) {
return new Eq(
this.subsLHS(unknowns, data),
this.subsRHS(unknowns, data),
this.freeVars,
this.params,
this.dependentVars
);
}
public Eq subsParams(double[] data) {
return new Eq(
this.subsLHS(params, data),
this.subsRHS(params, data),
this.freeVars,
this.params,
this.dependentVars
);
}
public Expr[] getUnknowns() {
return unknowns;
}
public Expr[] getParams() {
return params;
}
public Expr[] getFreeVars () {
return freeVars;
}
public Expr[] getDependentVars() {
return dependentVars;
}
public Expr solve(Expr var) {
return null;
}
public String toString() {
return lhs + " = " + rhs;
}
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.