Update of /cvsroot/lapackpp/lapackpp/include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20813/include
Modified Files:
Makefile.am lafnames.h lapackc.h lapackd.h
Added Files:
lasvd.h
Log Message:
2004-05-04 Christian Stimming <sti...@tu...>
* include/lasvd.h, src/lasvd.cc: Initial work for SVD functions.
--- NEW FILE: lasvd.h ---
// -*-C++-*-
// Copyright (C) 2004
// Christian Stimming <sti...@tu...>
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2, or (at
// your option) any later version.
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License along
// with this library; see the file COPYING. If not, write to the Free
// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
// USA.
// LAPACK++ (V. 1.1)
// (C) 1992-1996 All Rights Reserved.
/** @file
* @brief Functions for Singular Value Decomposition
*/
#ifndef _LASVD_H
#define _LASVD_H
#include "lafnames.h"
#include LA_GEN_MAT_DOUBLE_H
#include LA_GEN_MAT_COMPLEX_H
#include LA_VECTOR_LONG_INT_H
#ifdef LA_COMPLEX_SUPPORT
/** @name Complex-valued matrices */
//@{
/** Compute the SVD
*/
void LaSVD_IP(LaGenMatComplex& A,
LaVectorDouble &Sigma,
LaGenMatComplex& U,
LaGenMatComplex& VT );
//@}
#endif // LA_COMPLEX_SUPPORT
#endif // _LASVD_H
Index: Makefile.am
===================================================================
RCS file: /cvsroot/lapackpp/lapackpp/include/Makefile.am,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d --brief -r1.5 -r1.6
Files /tmp/cvsS4WqIM and /tmp/cvsIyLU88 differ
Index: lafnames.h
===================================================================
RCS file: /cvsroot/lapackpp/lapackpp/include/lafnames.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d --brief -r1.2 -r1.3
Files /tmp/cvs1031jW and /tmp/cvs6hkNQi differ
Index: lapackc.h
===================================================================
RCS file: /cvsroot/lapackpp/lapackpp/include/lapackc.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d --brief -r1.1.1.1 -r1.2
Files /tmp/cvsUdeji0 and /tmp/cvswRmJRm differ
Index: lapackd.h
===================================================================
RCS file: /cvsroot/lapackpp/lapackpp/include/lapackd.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d --brief -r1.1.1.1 -r1.2
Files /tmp/cvsM4vnR6 and /tmp/cvsEakDwt differ
|