# HG changeset patch # User jwe # Date 949813547 0 # Node ID 78827ee3508fff33d702f675aec3d598c734af74 # Parent a93683ccc9ba921ec43853467ffff5ee6465db1c [project @ 2000-02-06 05:05:39 by jwe] diff --git a/liboctave/vx-ccv-cv.cc b/liboctave/vx-ccv-cv.cc new file mode 100644 --- /dev/null +++ b/liboctave/vx-ccv-cv.cc @@ -0,0 +1,38 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include "vx-ccv-cv.h" + +#include "dColVector.h" +#include "CColVector.h" + +VV_BIN_OPS (ComplexColumnVector, ComplexColumnVector, ColumnVector) + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ diff --git a/liboctave/vx-ccv-cv.h b/liboctave/vx-ccv-cv.h new file mode 100644 --- /dev/null +++ b/liboctave/vx-ccv-cv.h @@ -0,0 +1,39 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#if !defined (octave_vx_ccv_cv_h) +#define octave_vx_ccv_cv_h 1 + +class ColumnVector; +class ComplexColumnVector; + +#include "mx-op-defs.h" + +VV_OP_DECLS (ComplexColumnVector, ComplexColumnVector, ColumnVector) + +#endif + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ diff --git a/liboctave/vx-ccv-s.cc b/liboctave/vx-ccv-s.cc new file mode 100644 --- /dev/null +++ b/liboctave/vx-ccv-s.cc @@ -0,0 +1,38 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include "vx-ccv-s.h" + +#include "dColVector.h" +#include "CColVector.h" + +VS_BIN_OPS (ComplexColumnVector, ComplexColumnVector, double) + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ diff --git a/liboctave/vx-ccv-s.h b/liboctave/vx-ccv-s.h new file mode 100644 --- /dev/null +++ b/liboctave/vx-ccv-s.h @@ -0,0 +1,38 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#if !defined (octave_vx_ccv_s_h) +#define octave_vx_ccv_s_h 1 + +class ComplexColumnVector; + +#include "mx-op-defs.h" + +VS_OP_DECLS (ComplexColumnVector, ComplexColumnVector, double) + +#endif + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ diff --git a/liboctave/vx-crv-rv.cc b/liboctave/vx-crv-rv.cc new file mode 100644 --- /dev/null +++ b/liboctave/vx-crv-rv.cc @@ -0,0 +1,38 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include "vx-crv-rv.h" + +#include "dRowVector.h" +#include "CRowVector.h" + +VV_BIN_OPS (ComplexRowVector, ComplexRowVector, RowVector) + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ diff --git a/liboctave/vx-crv-rv.h b/liboctave/vx-crv-rv.h new file mode 100644 --- /dev/null +++ b/liboctave/vx-crv-rv.h @@ -0,0 +1,40 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#if !defined (octave_vx_crv_rv_h) +#define octave_vx_crv_rv_h 1 + +class RowVector; +class ComplexRowVector; + +#include "mx-op-defs.h" + +VV_OP_DECLS (ComplexRowVector, ComplexRowVector, RowVector) + +#endif + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ + diff --git a/liboctave/vx-crv-s.cc b/liboctave/vx-crv-s.cc new file mode 100644 --- /dev/null +++ b/liboctave/vx-crv-s.cc @@ -0,0 +1,38 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include "vx-crv-s.h" + +#include "dRowVector.h" +#include "CRowVector.h" + +VS_BIN_OPS (ComplexRowVector, ComplexRowVector, double) + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ diff --git a/liboctave/vx-crv-s.h b/liboctave/vx-crv-s.h new file mode 100644 --- /dev/null +++ b/liboctave/vx-crv-s.h @@ -0,0 +1,38 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#if !defined (octave_vx_crv_s_h) +#define octave_vx_crv_s_h 1 + +class ComplexRowVector; + +#include "mx-op-defs.h" + +VS_OP_DECLS (ComplexRowVector, ComplexRowVector, double) + +#endif + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ diff --git a/liboctave/vx-cs-cv.cc b/liboctave/vx-cs-cv.cc new file mode 100644 --- /dev/null +++ b/liboctave/vx-cs-cv.cc @@ -0,0 +1,38 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include "vx-cs-cv.h" + +#include "dColVector.h" +#include "CColVector.h" + +SV_BIN_OPS (ComplexColumnVector, Complex, ColumnVector) + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ diff --git a/liboctave/vx-cs-cv.h b/liboctave/vx-cs-cv.h new file mode 100644 --- /dev/null +++ b/liboctave/vx-cs-cv.h @@ -0,0 +1,39 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#if !defined (octave_vx_cs_cv_h) +#define octave_vx_cs_cv_h 1 + +class ColumnVector; +class ComplexColumnVector; + +#include "mx-op-defs.h" + +SV_OP_DECLS (ComplexColumnVector, Complex, ColumnVector) + +#endif + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ diff --git a/liboctave/vx-cs-rv.cc b/liboctave/vx-cs-rv.cc new file mode 100644 --- /dev/null +++ b/liboctave/vx-cs-rv.cc @@ -0,0 +1,38 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include "vx-cs-rv.h" + +#include "dRowVector.h" +#include "CRowVector.h" + +SV_BIN_OPS (ComplexRowVector, Complex, RowVector) + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ diff --git a/liboctave/vx-cs-rv.h b/liboctave/vx-cs-rv.h new file mode 100644 --- /dev/null +++ b/liboctave/vx-cs-rv.h @@ -0,0 +1,39 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#if !defined (octave_vx_cs_rv_h) +#define octave_vx_cs_rv_h 1 + +class RowVector; +class ComplexRowVector; + +#include "mx-op-defs.h" + +SV_OP_DECLS (ComplexRowVector, Complex, RowVector) + +#endif + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ diff --git a/liboctave/vx-cv-ccv.cc b/liboctave/vx-cv-ccv.cc new file mode 100644 --- /dev/null +++ b/liboctave/vx-cv-ccv.cc @@ -0,0 +1,38 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include "vx-cv-ccv.h" + +#include "dColVector.h" +#include "CColVector.h" + +VV_BIN_OPS (ComplexColumnVector, ColumnVector, ComplexColumnVector) + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ diff --git a/liboctave/vx-cv-ccv.h b/liboctave/vx-cv-ccv.h new file mode 100644 --- /dev/null +++ b/liboctave/vx-cv-ccv.h @@ -0,0 +1,39 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#if !defined (octave_vx_cv_ccv_h) +#define octave_vx_cv_ccv_h 1 + +class ColumnVector; +class ComplexColumnVector; + +#include "mx-op-defs.h" + +VV_OP_DECLS (ComplexColumnVector, ColumnVector, ComplexColumnVector) + +#endif + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ diff --git a/liboctave/vx-cv-cs.cc b/liboctave/vx-cv-cs.cc new file mode 100644 --- /dev/null +++ b/liboctave/vx-cv-cs.cc @@ -0,0 +1,38 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include "vx-cv-cs.h" + +#include "dColVector.h" +#include "CColVector.h" + +VS_BIN_OPS (ComplexColumnVector, ColumnVector, Complex) + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ diff --git a/liboctave/vx-cv-cs.h b/liboctave/vx-cv-cs.h new file mode 100644 --- /dev/null +++ b/liboctave/vx-cv-cs.h @@ -0,0 +1,39 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#if !defined (octave_vx_cv_cs_h) +#define octave_vx_cv_cs_h 1 + +class ColumnVector; +class ComplexColumnVector; + +#include "mx-op-defs.h" + +VS_OP_DECLS (ComplexColumnVector, ColumnVector, Complex) + +#endif + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ diff --git a/liboctave/vx-rv-crv.cc b/liboctave/vx-rv-crv.cc new file mode 100644 --- /dev/null +++ b/liboctave/vx-rv-crv.cc @@ -0,0 +1,38 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include "vx-rv-crv.h" + +#include "dRowVector.h" +#include "CRowVector.h" + +VV_BIN_OPS (ComplexRowVector, RowVector, ComplexRowVector) + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ diff --git a/liboctave/vx-rv-crv.h b/liboctave/vx-rv-crv.h new file mode 100644 --- /dev/null +++ b/liboctave/vx-rv-crv.h @@ -0,0 +1,39 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#if !defined (octave_vx_rv_crv_h) +#define octave_vx_rv_crv_h 1 + +class RowVector; +class ComplexRowVector; + +#include "mx-op-defs.h" + +VV_OP_DECLS (ComplexRowVector, RowVector, ComplexRowVector) + +#endif + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ diff --git a/liboctave/vx-rv-cs.cc b/liboctave/vx-rv-cs.cc new file mode 100644 --- /dev/null +++ b/liboctave/vx-rv-cs.cc @@ -0,0 +1,38 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include "vx-rv-cs.h" + +#include "dRowVector.h" +#include "CRowVector.h" + +VS_BIN_OPS (ComplexRowVector, RowVector, Complex) + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ diff --git a/liboctave/vx-rv-cs.h b/liboctave/vx-rv-cs.h new file mode 100644 --- /dev/null +++ b/liboctave/vx-rv-cs.h @@ -0,0 +1,39 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#if !defined (octave_vx_rv_cs_h) +#define octave_vx_rv_cs_h 1 + +class RowVector; +class ComplexRowVector; + +#include "mx-op-defs.h" + +VS_OP_DECLS (ComplexRowVector, RowVector, Complex) + +#endif + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ diff --git a/liboctave/vx-s-ccv.cc b/liboctave/vx-s-ccv.cc new file mode 100644 --- /dev/null +++ b/liboctave/vx-s-ccv.cc @@ -0,0 +1,38 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include "vx-s-ccv.h" + +#include "dColVector.h" +#include "CColVector.h" + +SV_BIN_OPS (ComplexColumnVector, double, ComplexColumnVector) + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ diff --git a/liboctave/vx-s-ccv.h b/liboctave/vx-s-ccv.h new file mode 100644 --- /dev/null +++ b/liboctave/vx-s-ccv.h @@ -0,0 +1,38 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#if !defined (octave_vx_s_ccv_h) +#define octave_vx_s_ccv_h 1 + +class ComplexColumnVector; + +#include "mx-op-defs.h" + +SV_OP_DECLS (ComplexColumnVector, double, ComplexColumnVector) + +#endif + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ diff --git a/liboctave/vx-s-crv.cc b/liboctave/vx-s-crv.cc new file mode 100644 --- /dev/null +++ b/liboctave/vx-s-crv.cc @@ -0,0 +1,38 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include "vx-s-crv.h" + +#include "dRowVector.h" +#include "CRowVector.h" + +SV_BIN_OPS (ComplexRowVector, double, ComplexRowVector) + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/ diff --git a/liboctave/vx-s-crv.h b/liboctave/vx-s-crv.h new file mode 100644 --- /dev/null +++ b/liboctave/vx-s-crv.h @@ -0,0 +1,38 @@ +/* + +Copyright (C) 2000 John W. Eaton + +This file is part of Octave. + +Octave 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. + +Octave 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 Octave; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +#if !defined (octave_vx_s_crv_h) +#define octave_vx_s_crv_h 1 + +class ComplexRowVector; + +#include "mx-op-defs.h" + +SV_OP_DECLS (ComplexRowVector, double, ComplexRowVector) + +#endif + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; End: *** +*/