aboutsummaryrefslogtreecommitdiff
path: root/sys/mwcs/mwinvertd.x
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
commitfa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch)
treebdda434976bc09c864f2e4fa6f16ba1952b1e555 /sys/mwcs/mwinvertd.x
downloadiraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz
Initial commit
Diffstat (limited to 'sys/mwcs/mwinvertd.x')
-rw-r--r--sys/mwcs/mwinvertd.x40
1 files changed, 40 insertions, 0 deletions
diff --git a/sys/mwcs/mwinvertd.x b/sys/mwcs/mwinvertd.x
new file mode 100644
index 00000000..e2744821
--- /dev/null
+++ b/sys/mwcs/mwinvertd.x
@@ -0,0 +1,40 @@
+# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
+
+# MW_INVERTD -- Invert a square matrix, double precision version. The matrix
+# need not be symmetric. The input and output matrices cannot be the same.
+
+procedure mw_invertd (o_ltm, n_ltm, ndim)
+
+double o_ltm[ndim,ndim] #I input matrix
+double n_ltm[ndim,ndim] #O output (inverted) matrix
+int ndim #I dimensionality of system
+
+pointer sp, ix, ltm
+int nelem, i, j
+
+begin
+ call smark (sp)
+
+ nelem = ndim * ndim
+ call salloc (ix, ndim, TY_INT)
+ call salloc (ltm, nelem, TY_DOUBLE)
+
+ # Make scratch copy (to be modified) of input matrix.
+ call amovd (o_ltm, Memd[ltm], nelem)
+
+ # Set up identity matrix.
+ do i = 1, ndim {
+ do j = 1, ndim
+ n_ltm[i,j] = 0.0
+ n_ltm[i,i] = 1.0
+ }
+
+ # Perform the LU decomposition.
+ call mw_ludecompose (Memd[ltm], Memi[ix], ndim)
+
+ # Compute the inverse matrix by backsubstitution.
+ do j = 1, ndim
+ call mw_lubacksub (Memd[ltm], Memi[ix], n_ltm[1,j], ndim)
+
+ call sfree (sp)
+end