comparison liboctave/CRowVector.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
131 131
132 friend ComplexRowVector map (c_c_Mapper f, const ComplexRowVector& a); 132 friend ComplexRowVector map (c_c_Mapper f, const ComplexRowVector& a);
133 friend RowVector map (d_c_Mapper f, const ComplexRowVector& a); 133 friend RowVector map (d_c_Mapper f, const ComplexRowVector& a);
134 void map (c_c_Mapper f); 134 void map (c_c_Mapper f);
135 135
136 ComplexRowVector linspace (const Complex& x1, const Complex& x2, int n);
137
138 Complex min (void) const; 136 Complex min (void) const;
139 Complex max (void) const; 137 Complex max (void) const;
140 138
141 // i/o 139 // i/o
142 140
154 private: 152 private:
155 153
156 ComplexRowVector (Complex *d, int l) : Array<Complex> (d, l) { } 154 ComplexRowVector (Complex *d, int l) : Array<Complex> (d, l) { }
157 }; 155 };
158 156
157 ComplexRowVector linspace (const Complex& x1, const Complex& x2, int n);
158
159 } // extern "C++" 159 } // extern "C++"
160 160
161 #endif 161 #endif
162 162
163 /* 163 /*