diff options
| author | shigek <shigek@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-03-28 05:00:21 +0000 |
|---|---|---|
| committer | shigek <shigek@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-03-28 05:00:21 +0000 |
| commit | d2d2fed4e484b5c2caea652838becd884a8225d5 (patch) | |
| tree | 89e28877c7faa0402135f784553db6a1578eeb3a /ext/bigdecimal/lib/ludcmp.rb | |
| parent | 785fba71f8447ac1b43fad35e7db97dc5b72e65f (diff) | |
| download | ruby-d2d2fed4e484b5c2caea652838becd884a8225d5.tar.gz ruby-d2d2fed4e484b5c2caea652838becd884a8225d5.tar.xz ruby-d2d2fed4e484b5c2caea652838becd884a8225d5.zip | |
Copied from rough/bigdecimal,documents & some sample programs added.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3625 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/bigdecimal/lib/ludcmp.rb')
| -rw-r--r-- | ext/bigdecimal/lib/ludcmp.rb | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/ext/bigdecimal/lib/ludcmp.rb b/ext/bigdecimal/lib/ludcmp.rb new file mode 100644 index 000000000..c36f0dea5 --- /dev/null +++ b/ext/bigdecimal/lib/ludcmp.rb @@ -0,0 +1,75 @@ +# +# ludcmp.rb +# +module LUSolve + def ludecomp(a,n,zero=0.0,one=1.0) + ps = [] + scales = [] + for i in 0...n do # pick up largest(abs. val.) element in each row. + ps <<= i + nrmrow = zero + ixn = i*n + for j in 0...n do + biggst = a[ixn+j].abs + nrmrow = biggst if biggst>nrmrow + end + if nrmrow>zero then + scales <<= one/nrmrow + else + raise "Singular matrix" + end + end + n1 = n - 1 + for k in 0...n1 do # Gaussian elimination with partial pivoting. + biggst = zero; + for i in k...n do + size = a[ps[i]*n+k].abs*scales[ps[i]] + if size>biggst then + biggst = size + pividx = i + end + end + raise "Singular matrix" if biggst<=zero + if pividx!=k then + j = ps[k] + ps[k] = ps[pividx] + ps[pividx] = j + end + pivot = a[ps[k]*n+k] + for i in (k+1)...n do + psin = ps[i]*n + a[psin+k] = mult = a[psin+k]/pivot + if mult!=zero then + pskn = ps[k]*n + for j in (k+1)...n do + a[psin+j] -= mult*a[pskn+j] + end + end + end + end + raise "Singular matrix" if a[ps[n1]*n+n1] == zero + ps + end + + def lusolve(a,b,ps,zero=0.0) + n = ps.size + x = [] + for i in 0...n do + dot = zero + psin = ps[i]*n + for j in 0...i do + dot = a[psin+j]*x[j] + dot + end + x <<= b[ps[i]] - dot + end + (n-1).downto(0) do |i| + dot = zero + psin = ps[i]*n + for j in (i+1)...n do + dot = a[psin+j]*x[j] + dot + end + x[i] = (x[i]-dot)/a[psin+i] + end + x + end +end |
