# HG changeset patch # User jwe # Date 796669973 0 # Node ID c01e881ccbb1c328879167164222e0f741db80ae # Parent 0da1cc2c1947dc08086a9a9592d7e97f9eda6ba6 [project @ 1995-03-31 17:12:19 by jwe] diff -r 0da1cc2c1947 -r c01e881ccbb1 liboctave/CRowVector.h --- 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 (d, l) { } }; +ComplexRowVector linspace (const Complex& x1, const Complex& x2, int n); + } // extern "C++" #endif diff -r 0da1cc2c1947 -r c01e881ccbb1 liboctave/dRowVector.h --- 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 (d, l) { } }; +RowVector linspace (double x1, double x2, int n); + } // extern "C++" #endif