changeset 1196:c01e881ccbb1

[project @ 1995-03-31 17:12:19 by jwe]
author jwe
date Fri, 31 Mar 1995 17:12:53 +0000
parents 0da1cc2c1947
children ed01dfb2338d
files liboctave/CRowVector.h liboctave/dRowVector.h
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/CRowVector.h	Fri Mar 31 16:16:34 1995 +0000
+++ b/liboctave/CRowVector.h	Fri Mar 31 17:12:53 1995 +0000
@@ -133,8 +133,6 @@
   friend RowVector map (d_c_Mapper f, const ComplexRowVector& a);
   void map (c_c_Mapper f);
 
-  ComplexRowVector linspace (const Complex& x1, const Complex& x2, int n);
-
   Complex min (void) const;
   Complex max (void) const;
 
@@ -156,6 +154,8 @@
   ComplexRowVector (Complex *d, int l) : Array<Complex> (d, l) { }
 };
 
+ComplexRowVector linspace (const Complex& x1, const Complex& x2, int n);
+
 } // extern "C++"
 
 #endif
--- a/liboctave/dRowVector.h	Fri Mar 31 16:16:34 1995 +0000
+++ b/liboctave/dRowVector.h	Fri Mar 31 17:12:53 1995 +0000
@@ -119,8 +119,6 @@
   friend RowVector map (d_d_Mapper f, const RowVector& a);
   void map (d_d_Mapper f);
 
-  RowVector linspace (double x1, double x2, int n);
-
   double min (void) const;
   double max (void) const;
 
@@ -142,6 +140,8 @@
   RowVector (double *d, int l) : Array<double> (d, l) { }
 };
 
+RowVector linspace (double x1, double x2, int n);
+
 } // extern "C++"
 
 #endif