Method: CArray#hh_solve

Defined in:
lib/carray-gsl/core.rb

#hh_solve(b) ⇒ Object



196
197
198
199
200
# File 'lib/carray-gsl/core.rb', line 196

def hh_solve (b)
  CArray.attach(self, b) {
    return GSL::Linalg::HH.solve(self.gm, b.gv).ca.v
  }
end