diff libcruft/slatec-fn/xerfc.f @ 7789:82be108cc558

First attempt at single precision tyeps * * * corrections to qrupdate single precision routines * * * prefer demotion to single over promotion to double * * * Add single precision support to log2 function * * * Trivial PROJECT file update * * * Cache optimized hermitian/transpose methods * * * Add tests for tranpose/hermitian and ChangeLog entry for new transpose code
author David Bateman <dbateman@free.fr>
date Sun, 27 Apr 2008 22:34:17 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libcruft/slatec-fn/xerfc.f	Sun Apr 27 22:34:17 2008 +0200
@@ -0,0 +1,6 @@
+      subroutine xerfc (x, result)
+      external erfc
+      real x, result, erfc
+      result = erfc (x)
+      return
+      end