summaryrefslogtreecommitdiff
path: root/SRC/csyequb.f
AgeCommit message (Collapse)AuthorFilesLines
2016-09-29Reduce workspace size of xSYEQUB, xHEEQUBChristoph Conrads1-1/+1
- give correct minimum workspace size in the parameter description - {s,d}SYEQUB, xHEEQUB: use WORK(N+1:2*N) instead of WORK(2N+1:3*N)
2016-09-29Fix xSYEQUB, xHEEQUB formattingChristoph Conrads1-90/+91
- use standard 7 + 3n indentation - use scientific notation for real values - fix spaces around brackets
2016-09-29Remove dead assignments in xSYEQUB, xHEEQUBChristoph Conrads1-2/+0
2016-09-18Doc: fix xyyEQUB documentationChristoph Conrads1-20/+16
- fix description of purpose, parameters - cite the paper "Scaling by Binormalization"
2016-07-09STYLE: Remove trailing whitespace in Fortran filesHans Johnson1-15/+15
This is mostly a long term maintenance improvement. Many coding styles require elimination of trailing whitespace, and many editors and source code management configurations automatically gobble up whitespace. When these tools gobble up whitespace, it complicates reviewing the meaningful code changes. By removing whitespace on one patch, it makes future code reviews much easier. =SCRIPT==================================================================== if which tempfile &>/dev/null; then TEMPMAKER=tempfile elif which mktemp &>/dev/null; then TEMPMAKER=mktemp else echo "Cannot find tempfile program." 2>&1 exit 1 fi MYTEMP=$($TEMPMAKER) trap 'rm -f $MYTEMP' SIGINT SIGTERM stripit() { echo "stripping $1" sed 's/[ \t]*$//' "$1" > $MYTEMP cp $MYTEMP "$1" } if [ $# -gt 0 ]; then while [ "$1" != "" ]; do stripit $1 shift done else while read -t 2; do stripit $REPLY done fi rm $MYTEMP =================================================
2011-11-11Update version number to 3.4.0julie1-1/+1
2011-11-03Cosmetic changes in Doxygen presentation.julie1-23/+16
Use \par instead of \details for section. add a Contributors Section and a Reference Section. Remove (some) verbatim section when not needed. Those changes have been done by hand so I am not sure I manage to catch them all.
2011-11-01Last commit related to Doxygen integration following Albert's commentjulie1-1/+3
2011-10-31Correct Warning detected during Doxygen Generation.julie1-2/+0
Now each routine should have the correct list of arguments. This allowed to detect and fix problems in parameter description of many routines.
2011-10-13adding link to individual download, the links will appear directly in ↵julie1-0/+8
Doxygen html documentation
2011-10-06Integrating Doxygen in commentsjulie1-62/+132
2010-06-23Update date and version for 3.2.2 releasejulie1-2/+2
2010-04-13Add descriptions of the arguments work and uplo following Paul ↵julie1-0/+9
Roberts[NAG]'s comment sent to lapack@cs.utk.edu
2009-05-10Bug report sent by Alexander V. Kobotov (from Intel) on Mon, 6 Apr 2009 to ↵langou1-0/+4
"lapack@cs.utk.edu". "c(he/sy)equb: no slamch in external lists and lsame, intrinsics not described"
2009-03-14Add xSYEQUB bibliographic reference citing Livne & Golub.jason1-0/+8
Reference: Livne, O.E. and Golub, G.H., "Scaling by Binormalization", Numerical Algorithms, vol. 35, no. 1, pp. 97-120, January 2004. DOI 10.1023/B:NUMA.0000016606.32820.69 Tech report version: http://ruready.utah.edu/archive/papers/bin.pdf Signed-off-by: Jason Riedy <ejr@cs.berkeley.edu>
2009-02-11Modified {c,z}syequb to use 2*N WORK rather than 3*N.deaglanhalligan1-3/+3
2008-12-16(no commit message)julie1-0/+256