comparison src/eig.cc @ 277:1781618ec883

[project @ 1994-01-07 19:19:54 by jwe]
author jwe
date Fri, 07 Jan 1994 19:22:38 +0000
parents a99f28f5e351
children 98a165f6e6c5
comparison
equal deleted inserted replaced
276:4cf3c7df0e3d 277:1781618ec883
1 // f-eig.cc -*- C++ -*- 1 // f-eig.cc -*- C++ -*-
2 /* 2 /*
3 3
4 Copyright (C) 1993 John W. Eaton 4 Copyright (C) 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
33 #include "error.h" 33 #include "error.h"
34 #include "f-eig.h" 34 #include "f-eig.h"
35 35
36 #ifdef WITH_DLD 36 #ifdef WITH_DLD
37 tree_constant * 37 tree_constant *
38 builtin_eig (const tree_constant *args, int nargin, int nargout) 38 builtin_eig_2 (const tree_constant *args, int nargin, int nargout)
39 { 39 {
40 return eig (args, nargin, nargout); 40 return eig (args, nargin, nargout);
41 } 41 }
42 #endif 42 #endif
43 43