2330
|
1 Octave PROJECTS -*- text -*- |
|
2 =============== |
|
3 |
|
4 Check with bug-octave@bevo.che.wisc.edu for a possibly more current |
|
5 copy. Also, if you start working steadily on a project, please let |
|
6 bug-octave@bevo.che.wisc.edu know. We might have information that |
|
7 could help you; we'd also like to send you the GNU coding standards. |
|
8 |
|
9 This list is not exclusive -- there are many other things that might |
|
10 be good projects, but it might instead be something we already have, |
|
11 so check with bug-octave@bevo.che.wisc.edu before you start. |
|
12 |
|
13 --------- |
|
14 Numerical: |
|
15 --------- |
|
16 |
|
17 * Merge control stuff. |
|
18 |
|
19 * Improve logm, and sqrtm. |
|
20 |
|
21 * Improve complex mapper functions. |
|
22 |
|
23 * Make functions like gamma() return the right IEEE Inf or NaN |
|
24 values for extreme args or other undefined cases. |
|
25 |
|
26 * Handle complex values in fread and fwrite. |
|
27 |
|
28 * Support for lp_solve for linear programming problems. |
|
29 |
|
30 * Free QP solver. |
|
31 |
|
32 * Free NLP solver. |
|
33 |
|
34 * Support for sparse matrices. |
|
35 |
|
36 * Fix CollocWt to handle Laguerre polynomials. Make it easy to |
|
37 extend it to other polynomial types. |
|
38 |
|
39 * Add optional arguments to colloc so that it's not restricted to |
|
40 Legendre polynomials. |
|
41 |
|
42 * Fix eig to also be able to solve the generalized eigenvalue |
|
43 problem, and to solve for eigenvalues and eigenvectors without |
|
44 performing a balancing step first. |
|
45 |
|
46 * Move rand, eye, xpow, xdiv, etc., functions to the matrix classes. |
|
47 |
2477
|
48 * Use octave_allocator for memory management in Array classes once |
|
49 g++ supports static member templates. |
|
50 |
2330
|
51 * Implement the following functions: |
|
52 -- ppval -- cross -- dot |
|
53 |
|
54 * Allow user-supplied gradient information to be passed to NPSOL. |
|
55 |
2789
|
56 * Actually allow control of the derivative level in NPSOL. It can |
|
57 be changed with npsol_options(), but then NPSOL::do_minimize() |
|
58 sets it based on whether gradient and jacobian functions are |
|
59 available. |
|
60 |
|
61 * When constructing NLConst (and other) objects, make sure that |
|
62 there are sufficient checks to ensure that the dimensions all |
|
63 conform. |
|
64 |
2330
|
65 * Support for FSQP. |
|
66 |
|
67 * Convert FSQP style NLP statement to NPSOL style. |
|
68 |
|
69 * Convert NPSOL style NLP statement to FSQP style. |
|
70 - Look for linear equality constraints, extract corresponding rows |
|
71 of C. The rest are inequality constraints. |
|
72 - Look for Nonlinear equality constraints and set up a vector of |
|
73 pointers for shuffling. |
|
74 - Transform lb <= C*x <= ub, lb != ub, to C*x - ub <= 0 and |
|
75 lb - C*x <= 0. Likewise for lb <= g(x) <= ub. |
|
76 - Call FSQP. |
|
77 |
|
78 * Optional inputs for fsqp. |
|
79 |
2439
|
80 * Allow parameters to be passed through the call to fsolve() to the |
2777
|
81 user-supplied function for Matlab compatibility. Don't place an |
2439
|
82 upper limit on the number of arguments. |
|
83 |
2777
|
84 * Check matrices for symmetry before computing eigenvalues, etc., |
|
85 and then use the routines for symmetric matrices for improved |
|
86 performance. |
|
87 |
2330
|
88 * Check matrix classes for proper handling of empty matrices. |
|
89 |
2602
|
90 * Force all empty matrices to be 0x0 even when other dimensions have |
|
91 been speicified, for compatibility with Matlab, at least when some |
|
92 preference variable is set. |
|
93 |
2789
|
94 * Make operations with empty matrices produce empty matrices, for |
|
95 compatibility with Matlab (but only if Matlab 5 still does things |
|
96 this way). For example: [1, 2] * [] ==> []. |
|
97 |
2799
|
98 * Should any ([]) return [] or 0? What about all ([])? |
|
99 |
2330
|
100 * Improve design of ODE, DAE, classes. |
|
101 |
2439
|
102 * Make it possible to specify a time which dassl and lsode should |
|
103 not integrate past. |
|
104 |
2799
|
105 * Add interface to daspk (new version of dassl). |
|
106 |
2330
|
107 * Extend meaning of .* to include v .* M or M .* v (where v is a |
|
108 column vector with the same number of rows as M) to scale rows of |
|
109 M by elements of v. Similarly, if w is a row vector with as many |
|
110 columns as M, then either w .* M or M .* w scales the columns of |
|
111 M. |
|
112 |
2787
|
113 * Add support for +=, -=, etc. |
|
114 |
2497
|
115 * Given two vectors x and y of length m and n, implement a function |
|
116 outer (x, y, f) that returns an m-by-n matrix with entries |
|
117 f (x(i), y(j)). If f is omitted, multiplication is the default. |
2506
|
118 Should probably work for any vectors, not just if x is a column |
|
119 vector and y is a row vector. |
2497
|
120 |
2789
|
121 * Make it possible to solve b = L \ x efficiently, either by |
|
122 providing an explicit function call, or by automatically |
|
123 determining that L is triangular. If it is done automatically, |
|
124 provide some means for determining whether Octave has actually |
|
125 detected that the matrix is triangular. |
|
126 |
2799
|
127 * The polyfit function uses the economy QR factorization, but even |
|
128 that can take a lot of time for large datasets. Consider an |
|
129 option to compute the result with inv (A' * A) * A' * y or some |
|
130 other faster method.d Possibly just switch to this method if the |
|
131 dataset is larger than some value. |
|
132 |
|
133 * Consider making the behavior of the / and \ operators for |
|
134 non-square systems compatible with Matlab. |
|
135 |
2330
|
136 -------- |
|
137 Graphics: |
|
138 -------- |
|
139 |
|
140 * Make plotting with plplot work. |
|
141 |
|
142 * Fix interface with gnuplot to wait for gnuplot to output any text |
|
143 before octave returns a prompt. Possible by implementing two |
|
144 way communication between gnuplot and Octave. |
|
145 |
|
146 * Make gsave (and possibly gload) work. Implement gsave by having it |
|
147 also alter the plot command to not use temporary files (perhaps |
|
148 with some user-specified template for naming them) and then |
|
149 sending a `save' command to gnuplot. |
|
150 |
|
151 * It would be nice to be able to check that a plot is currently |
|
152 being displayed. |
|
153 |
2422
|
154 * Implement clf, gcf, get, set, orient, print, close, etc. in |
|
155 Matlab-compatible ways. |
2330
|
156 |
|
157 * Make it possible to check the current graphics terminal type. |
|
158 |
2560
|
159 * If possible, pass data to gnuplot without using temporary files. |
|
160 |
2789
|
161 * If using temporary files, delete them when gnuplot exits. |
|
162 |
2560
|
163 * If possible, pass binary data to gnuplot to speed things up. |
|
164 |
2799
|
165 * If using gnuplot, consider setting a smaller default for the |
|
166 `zero' value (e.g., set zero sqrt (realmin) or something). |
|
167 |
2330
|
168 ------- |
|
169 Strings: |
|
170 ------- |
|
171 |
2789
|
172 * Improve performance of string functions, particularly for |
|
173 searching and replacing. |
|
174 |
|
175 * Provide some regex matching functions. |
|
176 |
2330
|
177 * Convert string functions to work on string arrays. |
|
178 |
|
179 * Make find work for strings. |
|
180 |
2378
|
181 * Consider making octave_print_internal() print some sort of text |
|
182 representation for unprintable characters instead of sending them |
|
183 directly to the terminal. (But don't do this for fprintf!) |
|
184 |
|
185 * Consider changing the default value of `string_fill_char' from SPC |
|
186 to NUL. |
|
187 |
2560
|
188 * Consider making ["test", []] ==> "test", for compatibility with |
|
189 Matlab, at least when some set of preferences are set. |
|
190 |
2330
|
191 ---------------- |
|
192 Other Data Types: |
|
193 ---------------- |
|
194 |
|
195 * New types (char, short, etc.). |
|
196 |
|
197 * 3d matrix stuff. |
|
198 |
|
199 * Template functions for mixed-type ops. |
|
200 |
|
201 * Stuff for arithmetic using charMatrix, intMatrix, etc. |
|
202 |
|
203 ------------------------ |
|
204 Graphical User Interface: |
|
205 ------------------------ |
|
206 |
|
207 * In an X11 or other windowing environment, allow the user to pop up |
|
208 windows for menus and other purposes. A good place to start might |
|
209 be Tk, as long as Tcl is avoided. |
|
210 |
|
211 * Add a way to handle events, like alarms, mouse clicks, etc. |
|
212 |
|
213 ------------ |
|
214 Input/Output: |
|
215 ------------ |
|
216 |
|
217 * Make fread and fwrite work for complex data. Iostreams based |
|
218 versions of these functions would also be nice, and if you are |
|
219 working on them, it would be good to support other size |
|
220 specifications (integer*2, etc.). |
|
221 |
|
222 * Make load and save work for structures. |
|
223 |
|
224 * Make load and save look for <file>.mat if only given <file>. |
|
225 |
2799
|
226 Potential sticky points: |
|
227 |
|
228 - For load, if both foo and foo.mat exist, should it prefer foo |
|
229 or foo.mat? Should the preference depend on the arguments to |
|
230 load? I think it should only prefer .mat files if the |
|
231 -mat-binary option is supplied, or if the file foo.mat exists |
|
232 but the file foo does not. |
|
233 |
|
234 - For save, should it prefer to create foo or foo.mat? Should |
|
235 the preference depend on the arguments to save? Should the |
|
236 default_save_format imply a default preference? I think it |
|
237 should only create .mat files if it is writing Matlab |
|
238 compatible files. |
|
239 |
2330
|
240 * Move some pr-output stuff to liboctave. |
|
241 |
|
242 * Make the cutoff point for changing to packed storage a |
|
243 user-preference variable with default value 8192. |
|
244 |
|
245 * Save image data in binary format to save space. |
|
246 |
2378
|
247 * Make it possible to load other image formats (ppm, pbm, etc. would |
|
248 probably be best since there are already filters to convert to |
|
249 these formats from others.) |
|
250 |
2330
|
251 * Use HDF for binary data. |
|
252 |
2789
|
253 * Make ascii load and save work for Inf and NaN. (This is really a |
|
254 problem with the functions for reading floats in the GNU iolib.) |
2330
|
255 |
|
256 * Complain if there is not enough disk space available (I think |
|
257 there is simply not enough error checking in the code that handles |
|
258 writing data). |
|
259 |
|
260 * Make it possible to tie arbitrary input and output streams |
|
261 together, similar to the way iostreams can be tied together. |
|
262 |
|
263 ----------- |
|
264 Interpreter: |
|
265 ----------- |
|
266 |
2601
|
267 * Fix the parser so that |
|
268 |
|
269 function foo () |
|
270 implicit_str_to_num_ok = 1; |
|
271 '#' + 0; |
|
272 endfunction |
|
273 |
|
274 succeeds, even when implicit_str_to_num_ok is 0 at the time the |
|
275 function is parsed. |
|
276 |
|
277 * Consider making x(:) work no matter what the value of |
|
278 do_fortran_indexing. |
|
279 |
2569
|
280 * If foo.oct and foo.m both exist in the LOADPATH, Octave will |
|
281 always find foo.oct, even if foo.m appears earlier in the list of |
|
282 directories. This should be fixed (in the kpathsearch library) to |
|
283 find the first .oct or .m file in the path, and only prefer .oct |
|
284 over .m if both files are in the same directory. |
|
285 |
2520
|
286 * Fix the grammar to allow structure references and index operations |
|
287 for for anonymous expressions. For example, it should be possible |
|
288 to write |
|
289 |
|
290 localtime (time ()) . hour; |
|
291 |
|
292 to get the current hour. Likewise, it should be possible to write |
|
293 |
|
294 svd (A) (1:13); |
|
295 |
|
296 to extract the first 13 singular values of the matrix A. |
|
297 |
2330
|
298 * Consider grouping all preference variables in a structure instead |
|
299 of further polluting the namespace. Maybe `Octave_options.xxx'? |
|
300 |
|
301 * Rewrite functions in input.cc to do the right thing in all cases |
|
302 of using readline, forced interactive behavior, echoing of input, |
|
303 etc. |
|
304 |
|
305 * Make it possible to redefine built-in variables and functions. |
|
306 (Fix whatever it is that is happening with clear for built-in |
|
307 variables.) |
|
308 |
|
309 * Make it possible to check if a variable is complex. |
|
310 |
|
311 * Consider making linspace() and logspace() return the value |
|
312 corresponding to the first argument if the number of requested |
|
313 points is 1. |
|
314 |
|
315 * Make it possible to get the names of the arguments that are passed |
|
316 to functions, at least if simple variables are passed. |
|
317 |
|
318 * Consider allowing an arbitrary property list to be attached to any |
|
319 variable. This could be a more general way to handle the help |
|
320 string that can currently be added with `document'. |
|
321 |
|
322 * Allow more command line options to be accessible as built-in |
|
323 variables (--echo-commands, etc.). |
|
324 |
|
325 * Allow `octave -c STRING' to execute commands from STRING then |
|
326 exit. |
|
327 |
|
328 * Handle DOS style CRLFs in M files. This should probably be |
|
329 optional. |
|
330 |
|
331 * Make the interpreter run faster. |
|
332 |
|
333 * Make it possible to disable or enable all warnings on an |
|
334 individual basis from the command line or via some built-in |
|
335 structure variable. |
|
336 |
2378
|
337 * Warn about complex comparisons? Could just use double_value() or |
|
338 matrix_value() instead of explicit conversions to real types. |
|
339 |
|
340 * Make warnings also give some indication about the location of the |
|
341 code that triggers the warning. |
|
342 |
|
343 * Warn about complex comparisons? Could just use double_value() or |
|
344 matrix_value() instead of explicit conversions to real types. For |
|
345 this to really be useful, some additional information must be |
|
346 available to point to the location of the code that triggers the |
|
347 warning. |
|
348 |
2330
|
349 * Consider making it possible to have arrays of structures, and some |
|
350 way of indexing them. |
|
351 |
|
352 * Allow arbitrary lower bounds for array indexing. (Watch out for |
|
353 the additional conflict with zero-one style indexing.) |
|
354 |
|
355 * Recursive problems. |
|
356 |
|
357 * Improve the way ignore_function_time_stamp works to allow |
|
358 selecting by individual directories or functions. Also, |
|
359 optionally allow checking only once between each prompt instead of |
|
360 every time the function is called. |
|
361 |
|
362 * Make it possible to ask exist() to only look for certain classes |
|
363 of variables, functions, files, etc. rather than always looking for |
|
364 everything. |
|
365 |
|
366 * Add a command-line option to tell Octave to just do syntax |
|
367 checking and not execute statements. |
|
368 |
|
369 * Is it necessary for do_binary_op and do_unary_op to be friends of |
|
370 the tree_constant class. |
|
371 |
|
372 * Clean up symtab and variable stuff. |
|
373 |
|
374 * Input stream class for parser files -- must manage buffers for |
|
375 flex and context for global variable settings. |
|
376 |
|
377 * Make LEXICAL_ERROR have a value that is the error message for |
|
378 parse_error() to print? |
|
379 |
|
380 * Make it possible to clear dynamically loaded functions. |
|
381 |
|
382 * Add a run-time alias mechanism that would allow things like |
|
383 |
|
384 alias fun function_with_a_very_long_name |
|
385 |
|
386 so that `function_with_a_very_long_name' could be invoked as |
|
387 `fun'. |
|
388 |
|
389 * What should is_global() return when called for built-in variables? |
|
390 |
|
391 * Make it possible to have `static' variables inside functions that |
|
392 retain their values across calls. |
|
393 |
|
394 * Allow local changes to variables to be written more compactly than |
|
395 is currently possible with unwind_protect. For example, |
|
396 |
|
397 function f () |
|
398 local prefer_column_vectors = something; |
|
399 ... |
|
400 endfunction |
|
401 |
|
402 would be equivalent to |
|
403 |
|
404 function f () |
|
405 unwind_protect |
|
406 save_prefer_column_vectors = prefer_column_vectors; |
|
407 prefer_column_vectors = something; |
|
408 ... |
|
409 unwind_protect_cleanup |
|
410 prefer_column_vectors = save_prefer_column_vectors; |
|
411 end_unwind_protect |
|
412 endfunction |
|
413 |
|
414 * Fix all function files to check for bogus inputs (wrong number or |
|
415 types of input arguments, wrong number of output arguments). |
|
416 |
2789
|
417 * Reduce the memory and time required to parse very large matrix |
|
418 lists. |
|
419 |
2330
|
420 * Handle options for built-in functions more consistently. |
|
421 |
|
422 * Too much time is spent allocating and freeing memory. What can be |
|
423 done to improve performance? |
|
424 |
|
425 * Error output from Fortran code is ugly. Something should be done to |
|
426 make it look better. |
|
427 |
|
428 * It would be nice if output from the Fortran routines could be |
|
429 passed through the pager. |
|
430 |
|
431 * Attempt to recognize common subexpressions in the parser. |
|
432 |
|
433 * Remove the buffer size limit in octave_read() in input.cc. |
|
434 |
|
435 * Handle arrays with more than two dimensions. |
|
436 |
|
437 * Consider making assignment statements like |
|
438 |
|
439 M (i_idx, j_idx) = RHS |
|
440 |
|
441 produce the value of RHS instead of the value of M. |
|
442 |
|
443 * Consider making it possible to specify an empty matrix with a |
|
444 syntax like [](e1, e2). Of course at least one of the expressions |
|
445 must be zero... |
|
446 |
|
447 * Eliminate force_numeric and make_numeric functions. |
|
448 |
|
449 * Is Matrix::fortran_vec() really necessary? |
2799
|
450 b |
2330
|
451 * print_usage() should set error_state in most cases? |
|
452 |
|
453 * Make statements like this |
|
454 |
|
455 foo bar baz |
|
456 |
|
457 turn into function calls like this: |
|
458 |
|
459 foo ("bar", "baz") |
|
460 |
|
461 This is pretty ugly and introduces some conflicts. |
|
462 |
|
463 * Add a command that works like bash's `builtin' command. |
|
464 |
|
465 * Handle comments in parse trees for use with the type command. |
|
466 |
2378
|
467 * Make the type command handle script files too, by just reading and |
|
468 printing them. |
|
469 |
2330
|
470 * Clean up eye, eval, feval, keyboard, input, ones, zeros. |
|
471 |
2799
|
472 * Turn off printing when evaluating expressions in an eval() |
|
473 statement, for compatibility with Matlab. |
|
474 |
2330
|
475 * It would be nice to have an interactive debugger. |
|
476 |
2378
|
477 * Make whos report total memory used by variables (and functions?). |
|
478 |
2746
|
479 * Rewrite whos and the symbol_record_info class. Write a built-in |
|
480 function that gives all the basic information, then write who and |
|
481 whos as M-files. |
2439
|
482 |
2799
|
483 * On systems that support matherr(), make it possible for users to |
|
484 enable the printing of warning messages. |
|
485 |
2330
|
486 ------- |
|
487 History: |
|
488 ------- |
|
489 |
|
490 * Add an option to allow saving input from script files in the |
|
491 history list. |
|
492 |
|
493 * Fix history problems -- core dump if multiple processes are |
|
494 writing to the same history file? |
|
495 |
|
496 ------------------------------ |
|
497 Configuration and Installation: |
|
498 ------------------------------ |
|
499 |
2473
|
500 * Handle USE_READLINE so that --enable-readline will work. |
2330
|
501 |
|
502 * Make Octave as independent of the particular readline version as |
|
503 possible. |
|
504 |
2473
|
505 * Add an --enable-pathsearch option to configure to make it possible |
|
506 to configure and run without kpathsea. |
|
507 |
2811
|
508 * Make configure take more defaults from the environment. It should |
|
509 definitely pay attention to CFLAGS, CXXFLAGS, FFLAGS, etc. |
2469
|
510 |
2330
|
511 * Should --enable-lite-kernel imply --enable-shared? |
|
512 |
|
513 * Make it possible to configure without readline. |
|
514 |
|
515 * Makefile changes: |
|
516 -- eliminate for loops |
|
517 -- define shell commands or eliminate them |
|
518 -- verify distclean |
|
519 -- consolidate targets |
|
520 |
|
521 * Make it possible to configure so that installed binaries and |
|
522 shared libraries are stripped. |
|
523 |
|
524 * Make installation of the static libraries optional. |
|
525 |
|
526 ------------------------------ |
|
527 Documentation and On-Line Help: |
|
528 ------------------------------ |
|
529 |
|
530 * Document new features. |
|
531 -- history-search-{back,for}ward. |
|
532 -- try/catch. |
|
533 -- Other stuff mentioned in the NEWS file. |
|
534 |
|
535 * Improve the Texinfo Documentation for the interpreter. It would |
|
536 be useful to have lots more examples, to not have so many forward |
|
537 references, and to not have very many simple lists of functions. |
|
538 |
|
539 * The docs should mention something about efficiency and that using |
|
540 array operations is almost always a good idea for speed. |
|
541 |
|
542 * Texinfo documentation for the C++ classes. |
|
543 |
|
544 * Support multiple info files, perhaps allowing one or more in each |
|
545 directory in the LOADPATH, so that local collections of M-files |
|
546 could be documented with Info. |
|
547 |
|
548 * Figure out a good way to have functions and variables documented |
|
549 in only one place. |
|
550 |
|
551 * Improve help messages for operators and keywords in help.cc. |
|
552 |
|
553 * Make index entries more consistent to improve behavior of `help -i'. |
|
554 |
|
555 * Make `help -i' try to find a whole word match first. |
|
556 |
|
557 * Allow help for local additions to be accessible with help -i. |
|
558 |
|
559 * Make the arrow keys work in the info reader. |
|
560 |
|
561 * Update Info to be based on the current Texinfo release. |
|
562 |
2378
|
563 * Should info/terminal.c include definitions for PC, BC, UP, and |
|
564 ospeed on all systems? |
|
565 |
2330
|
566 * Demo files. |
|
567 |
|
568 * As the number of m-files with octave grows perhaps a 'Contents.m' |
|
569 file for each toolbox (directory) would be appropriate so one |
|
570 knows exactly what functions are in a toolbox with a quick look. |
|
571 It would be best to generate information for each function directly |
|
572 from the M-files, so that the information doesn't have to be |
|
573 duplicated, and will remain current if the M-files change. It |
|
574 would also be best to do as much of this as possible in an M-file, |
|
575 though I wouldn't mind adding some basic support for listing the |
|
576 names of all the directories in the LOADPATH, and the names of all |
|
577 the M-files in a given directory if that is needed. |
|
578 |
2787
|
579 Also make it possible to recursively search for Contents files: |
|
580 |
|
581 help dir -- Contents from dir |
|
582 help dir// -- Contents from dir and all its subdirectories |
|
583 help dir1/dir2 -- Contents from dir2 which is under dir1 |
|
584 |
2330
|
585 * Some sort of blurb (2-3 pages) describing Octave in a reasonably |
|
586 coherent way, where to get it etc., perhaps formatted pretty, |
|
587 i.e. not just text. Maybe start with the latest Announce file. |
|
588 |
|
589 ----- |
|
590 Tests: |
|
591 ----- |
|
592 |
|
593 * Improved set of tests: |
|
594 |
|
595 -- Tests for various functions. Would be nice to have a test file |
|
596 corresponding to every function. |
|
597 |
|
598 -- Tests for element by element operators: |
|
599 + - .* ./ .\ .^ | & < <= == >= > != ! |
|
600 |
|
601 -- Tests for boolean operators: && || |
|
602 |
|
603 -- Tests for other operators: * / \ ' .' |
|
604 |
|
605 -- Tests from bug reports. |
|
606 |
|
607 -- Tests for indexed assignment. Need to consider the following: |
|
608 o fortran-style indexing |
|
609 o zero-one indexing |
|
610 o assignment of empty matrix as well as values |
|
611 o resizing |
|
612 |
|
613 * Tests for all internal functions. |
|
614 |
|
615 ----------- |
|
616 Programming: |
|
617 ----------- |
|
618 |
|
619 * Move toward using more stuff from standard C++ library. |
|
620 |
|
621 * More C++/Fortran cleanups. |
|
622 |
|
623 * It is likely that there are still some memory leaks. Hunt then down |
|
624 and plug them. |
|
625 |
2475
|
626 * Better error messages for missing operators? |
|
627 |
|
628 * Eliminate duplicate enums in pt-exp.cc, pt-const.cc, and ov.cc. |
|
629 |
|
630 * Handle octave_print_internal() stuff at the liboctave level. Then |
|
631 the octave_value classes could just call on the print() methods |
|
632 for the underlying classes. |
|
633 |
|
634 * As much as possible, eliminate explicit checks for the types of |
|
635 octave_value objects so that user-defined types will automatically |
|
636 do the right thing in more cases. |
|
637 |
2330
|
638 * Only include config.h in files that actually need it, instead of |
|
639 including it in every .cc file. Unfortunately, this might not be |
|
640 so easy to figure out. |
|
641 |
|
642 * GNU coding standards: |
|
643 |
|
644 -- Add a `Makefile' target to the Makefiles. |
|
645 -- Comments on #else and #endif preprocessor commands. |
|
646 -- Change error message format to match standards everywhere. |
|
647 |
|
648 * Use STL stuff instead of libg++ lists, maps, and stacks. |
|
649 |
|
650 * Eliminate more global variables. |
|
651 |
|
652 * Encapsulate readline in a class. Include interface to stuff like |
|
653 blink_matching_paren. |
|
654 |
|
655 * Encapsulate resource stuff in a class. |
|
656 |
|
657 * Move procstream to liboctave. |
|
658 |
|
659 * Replace more C-style vectors with Array<T> stuff. |
|
660 |
|
661 * Use references and classes in more places. |
|
662 |
|
663 * Share more code among the various *_options functions. |
|
664 |
|
665 ------------- |
|
666 Miscellaneous: |
|
667 ------------- |
|
668 |
|
669 * Implement some functions for interprocess communication: bind, |
|
670 accept, connect, gethostbyname, etc. |
|
671 |
2454
|
672 * The installation process should also install octave.el. This |
|
673 needs to detect the appropriate Emacs binary to use to |
|
674 byte-compile the .el file. Following GNU Emacs philosophy, |
|
675 installation would be into $(prefix)/share/emacs/site-lisp by |
|
676 default, but it should be selectable. |
|
677 |
2330
|
678 * The ability to transparently handle very large files: |
|
679 |
|
680 Juhana K Kouhia <kouhia@nic.funet.fi> wrote: |
|
681 |
|
682 If I have a one-dimensional signal data with the size 400 |
|
683 Mbytes, then what are my choices to operate with it: |
|
684 |
|
685 * I have to split the data |
|
686 * Octave has a virtual memory on its own and I don't have to |
|
687 worry about the splitting. |
|
688 |
|
689 If I split the data, then my easily programmed processing |
|
690 programs will become hard to program. |
|
691 |
|
692 If possible, I would like to have the virtual memory system in |
|
693 Octave i.e. the all big files, the user see as one big array or |
|
694 such. There could be several user selectable models to do the |
|
695 virtual memory depending on what kind of data the user have (1d, |
|
696 2d) and in what order they are processed (stream or random |
|
697 access). |
|
698 |
|
699 Perhaps this can be done entirely with a library of M-files. |
|
700 |
|
701 * Add a function like strptime() which is the opposite of |
|
702 strftime(). A C version is apparently in recent releases of the |
|
703 Linux C library. |
|
704 |
2789
|
705 * Add a definition to lgrind so that it supports Octave. |
|
706 (See http://www.tex.ac.uk/tex-archive/support/lgrind/ for more |
|
707 information about lgrind.) |
|
708 |
2330
|
709 ------ |
|
710 Always: |
|
711 ------ |
|
712 |
|
713 * Squash bugs. |
|
714 |
|
715 --30-- |