comparison PROJECTS @ 6628:d88d66f8cab6

[project @ 2007-05-16 15:11:14 by jwe]
author jwe
date Wed, 16 May 2007 15:11:14 +0000
parents 37dcb57b80f6
children 77785733a18d
comparison
equal deleted inserted replaced
6627:37dcb57b80f6 6628:d88d66f8cab6
29 29
30 * Handle complex values in fread and fwrite. 30 * Handle complex values in fread and fwrite.
31 31
32 * Support for lp_solve for linear programming problems. 32 * Support for lp_solve for linear programming problems.
33 33
34 * Free NLP solver. 34 * Improve sqp.
35 35
36 * Fix CollocWt to handle Laguerre polynomials. Make it easy to 36 * Fix CollocWt to handle Laguerre polynomials. Make it easy to
37 extend it to other polynomial types. 37 extend it to other polynomial types.
38 38
39 * Add optional arguments to colloc so that it's not restricted to 39 * Add optional arguments to colloc so that it's not restricted to
172 * Make fread and fwrite work for complex data. Iostreams based 172 * Make fread and fwrite work for complex data. Iostreams based
173 versions of these functions would also be nice, and if you are 173 versions of these functions would also be nice, and if you are
174 working on them, it would be good to support other size 174 working on them, it would be good to support other size
175 specifications (integer*2, etc.). 175 specifications (integer*2, etc.).
176 176
177 * Make fread and fopen look in the load path for files.
178
179 * Move some pr-output stuff to liboctave. 177 * Move some pr-output stuff to liboctave.
180 178
181 * Make the cutoff point for changing to packed storage a 179 * Make the cutoff point for changing to packed storage a
182 user-preference variable with default value 8192. 180 user-preference variable with default value 8192.
183 181
211 209
212 if (expr) 'this is a string' end 210 if (expr) 'this is a string' end
213 211
214 is parsed as IF expr STRING END. 212 is parsed as IF expr STRING END.
215 213
216 * Consider grouping all preference variables in a structure instead 214 * Clean up functions in input.cc that handle user input (there
217 of further polluting the namespace. Maybe `Octave_options.xxx'? 215 currently seems to be some unnecessary duplication of code and it
216 seems overly complex).
218 217
219 * Consider allowing an arbitrary property list to be attached to any 218 * Consider allowing an arbitrary property list to be attached to any
220 variable. This could be a more general way to handle the help 219 variable. This could be a more general way to handle the help
221 string that can currently be added with `document'. 220 string that can currently be added with `document'.
222 221