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