comparison libcruft/lapack-xtra/xslange.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
comparison
equal deleted inserted replaced
7788:45f5faba05a2 7789:82be108cc558
1 subroutine xslange (norm, m, n, a, lda, work, retval)
2 character norm
3 integer lda, m, n
4 real a (lda, *), work (*), slange, retval
5 retval = slange (norm, m, n, a, lda, work)
6 return
7 end