comparison src/xpow.cc @ 453:393e95f46b51

[project @ 1994-06-06 00:05:20 by jwe]
author jwe
date Mon, 06 Jun 1994 00:14:55 +0000
parents a99f28f5e351
children 42731861ee09
comparison
equal deleted inserted replaced
452:565206294f5a 453:393e95f46b51
1 // xpow.cc -*- C++ -*- 1 // xpow.cc -*- C++ -*-
2 /* 2 /*
3 3
4 Copyright (C) 1992, 1993 John W. Eaton 4 Copyright (C) 1992, 1993, 1994 John W. Eaton
5 5
6 This file is part of Octave. 6 This file is part of Octave.
7 7
8 Octave is free software; you can redistribute it and/or modify it 8 Octave is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the 9 under the terms of the GNU General Public License as published by the
27 27
28 #include <assert.h> 28 #include <assert.h>
29 #include <Complex.h> 29 #include <Complex.h>
30 30
31 #include "xpow.h" 31 #include "xpow.h"
32 #include "Matrix.h" 32 #include "dMatrix.h"
33 #include "CMatrix.h"
34 #include "dDiagMatrix.h"
35 #include "CDiagMatrix.h"
36 #include "CColVector.h"
37 #include "EIG.h"
33 #include "tree-const.h" 38 #include "tree-const.h"
34 #include "error.h" 39 #include "error.h"
35 40
36 // This function also appears in tree-const.cc. Maybe it should be a 41 // This function also appears in tree-const.cc. Maybe it should be a
37 // member function of the Matrix class. 42 // member function of the Matrix class.