comparison liboctave/dRowVector.h @ 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 8302fab9fe24
comparison
equal deleted inserted replaced
1195:0da1cc2c1947 1196:c01e881ccbb1
117 // other operations 117 // other operations
118 118
119 friend RowVector map (d_d_Mapper f, const RowVector& a); 119 friend RowVector map (d_d_Mapper f, const RowVector& a);
120 void map (d_d_Mapper f); 120 void map (d_d_Mapper f);
121 121
122 RowVector linspace (double x1, double x2, int n);
123
124 double min (void) const; 122 double min (void) const;
125 double max (void) const; 123 double max (void) const;
126 124
127 // i/o 125 // i/o
128 126
140 private: 138 private:
141 139
142 RowVector (double *d, int l) : Array<double> (d, l) { } 140 RowVector (double *d, int l) : Array<double> (d, l) { }
143 }; 141 };
144 142
143 RowVector linspace (double x1, double x2, int n);
144
145 } // extern "C++" 145 } // extern "C++"
146 146
147 #endif 147 #endif
148 148
149 /* 149 /*