matcpx.sa
Generated by gen_html_sa_files from ICSI. Contact gomes@icsi.berkeley.edu for details
-------------------------> GNU Sather - sourcefile <-------------------------
-- Copyright (C) 2000 by K Hopper, University of Waikato, New Zealand --
-- This file is part of the GNU Sather library. It is free software; you may --
-- redistribute and/or modify it under the terms of the GNU Library General --
-- Public License (LGPL) as published by the Free Software Foundation; --
-- either version 2 of the license, 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 Doc/LGPL for more details. --
-- The license text is also available from: Free Software Foundation, Inc., --
-- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --
--------------> Please email comments to <bug-sather@gnu.org> <--------------
class MATCPX < $MAT{CPX,VECCPX,MATCPX}
class MATCPX < $MAT{CPX,VECCPX,MATCPX} is
-- This class implements a complex number matrix, by including the
-- generic class.
-- Version 1.1 Sep 97. Copyright K Hopper, U of Waikato
-- Development History
-- -------------------
-- Date Who By Detail
-- ---- ------ ------
-- 13 Jul 96 bg Original for Sather 1.1 Dist
-- 4 Sep 97 kh Modified for style.
include MAT{CPX,VECCPX} ;
const zero : CPX := CPX::create(0.0,0.0) ;
const one : CPX := CPX::create(1.0,0.0) ;
end ; -- MATCPX
class MATCPXD < $MAT{CPXD,VECCPXD,MATCPXD}
class MATCPXD < $MAT{CPXD,VECCPXD,MATCPXD} is
-- This class implements a double length complex number matrix, by
-- including the generic class.
-- Version 1.1 Sep 97. Copyright K Hopper, U of Waikato
-- Development History
-- -------------------
-- Date Who By Detail
-- ---- ------ ------
-- 13 Jul 96 bg Original for Sather 1.1 Dist
-- 4 Sep 97 kh Modified for style.
include MAT{CPXD,VECCPXD} ;
const zero : CPXD := CPXD::create(0.0d,0.0d) ;
const one : CPXD := CPXD::create(1.0d,0.0d) ;
end ; -- MATCPXD