File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ __pycache__/
88
99# Distribution / packaging
1010.Python
11+ Figs /
1112build /
1213develop-eggs /
1314dist /
Original file line number Diff line number Diff line change @@ -261,7 +261,7 @@ def corrections(m, power):
261261 F [3 ] = normalise [3 ] * ( m [3 ] - 3 * m [1 ]* m [2 ] + 3 * (m [1 ]** 3 ) )
262262 if 4 in powers :
263263 F [4 ] = normalise [4 ] * ( m [4 ] - 4 * m [1 ]* m [3 ] + 18 * (m [1 ]** 2 )* m [2 ] \
264- - 3 * m [2 ]** 2 - 15 * (m [1 ]** 4 ) )
264+ - 3 * ( m [2 ]** 2 ) - 15 * (m [1 ]** 4 ) )
265265 if 5 in powers :
266266 F [5 ] = normalise [5 ] * ( m [5 ] - 5 * m [1 ]* m [4 ] + 30 * (m [1 ]** 2 )* m [3 ] \
267267 - 150 * (m [1 ]** 3 )* m [2 ] + 45 * m [1 ]* (m [2 ]** 2 ) - 10 * m [2 ]* m [3 ] \
@@ -270,7 +270,7 @@ def corrections(m, power):
270270 F [6 ] = normalise [6 ] * ( m [6 ] - 6 * m [1 ]* m [5 ] + 45 * (m [1 ]** 2 )* m [4 ] \
271271 - 300 * (m [1 ]** 3 )* m [3 ] + 1575 * (m [1 ]** 4 )* m [2 ] \
272272 - 675 * (m [1 ]** 2 )* (m [2 ]** 2 ) + 180 * m [1 ]* m [2 ]* m [3 ] \
273- + 45 * (m [3 ]** 3 ) - 15 * m [2 ]* m [4 ] - 10 * (m [3 ]** 2 ) \
273+ + 45 * (m [2 ]** 3 ) - 15 * m [2 ]* m [4 ] - 10 * (m [3 ]** 2 ) \
274274 - 945 * (m [1 ]** 6 ) )
275275
276276 return F
You can’t perform that action at this time.
0 commit comments