Module: Newton
- Defined in:
- lib/urbanopt/geojson/scale_area.rb
Class Method Summary collapse
- .jacobian(f, fx, x) ⇒ Object
- .ludecomp(a, n, zero = 0, one = 1) ⇒ Object
- .lusolve(a, b, ps, zero = 0.0) ⇒ Object
Class Method Details
.jacobian(f, fx, x) ⇒ Object
13 14 15 |
# File 'lib/urbanopt/geojson/scale_area.rb', line 13 def self.jacobian(f, fx, x) Jacobian.jacobian(f, fx, x) end |
.ludecomp(a, n, zero = 0, one = 1) ⇒ Object
17 18 19 |
# File 'lib/urbanopt/geojson/scale_area.rb', line 17 def self.ludecomp(a, n, zero = 0, one = 1) LUSolve.ludecomp(a, n, zero, one) end |
.lusolve(a, b, ps, zero = 0.0) ⇒ Object
21 22 23 |
# File 'lib/urbanopt/geojson/scale_area.rb', line 21 def self.lusolve(a, b, ps, zero = 0.0) LUSolve.lusolve(a, b, ps, zero) end |