3162
|
1 <html> |
|
2 <pre> |
2330
|
3 Octave PROJECTS -*- text -*- |
|
4 =============== |
|
5 |
|
6 Check with bug-octave@bevo.che.wisc.edu for a possibly more current |
|
7 copy. Also, if you start working steadily on a project, please let |
|
8 bug-octave@bevo.che.wisc.edu know. We might have information that |
|
9 could help you; we'd also like to send you the GNU coding standards. |
|
10 |
|
11 This list is not exclusive -- there are many other things that might |
|
12 be good projects, but it might instead be something we already have, |
|
13 so check with bug-octave@bevo.che.wisc.edu before you start. |
|
14 |
|
15 --------- |
|
16 Numerical: |
|
17 --------- |
|
18 |
|
19 * Improve logm, and sqrtm. |
|
20 |
3713
|
21 * Improve complex mapper functions. See W. Kahan, ``Branch Cuts for |
|
22 Complex Elementary Functions, or Much Ado About Nothing's Sign |
|
23 Bit'' (in The State of the Art in Numerical Analysis, eds. Iserles |
|
24 and Powell, Clarendon Press, Oxford, 1987) for explicit |
|
25 trigonometric formulae. |
2330
|
26 |
|
27 * Make functions like gamma() return the right IEEE Inf or NaN |
|
28 values for extreme args or other undefined cases. |
|
29 |
|
30 * Handle complex values in fread and fwrite. |
|
31 |
|
32 * Support for lp_solve for linear programming problems. |
|
33 |
|
34 * Free QP solver. |
|
35 |
|
36 * Free NLP solver. |
|
37 |
|
38 * Support for sparse matrices. |
|
39 |
|
40 * Fix CollocWt to handle Laguerre polynomials. Make it easy to |
|
41 extend it to other polynomial types. |
|
42 |
3130
|
43 * Make filter faster (perhaps by calling BLAS functions). |
|
44 |
2330
|
45 * Add optional arguments to colloc so that it's not restricted to |
|
46 Legendre polynomials. |
|
47 |
|
48 * Fix eig to also be able to solve the generalized eigenvalue |
|
49 problem, and to solve for eigenvalues and eigenvectors without |
|
50 performing a balancing step first. |
|
51 |
|
52 * Move rand, eye, xpow, xdiv, etc., functions to the matrix classes. |
|
53 |
2477
|
54 * Use octave_allocator for memory management in Array classes once |
|
55 g++ supports static member templates. |
|
56 |
2330
|
57 * Implement the following functions: |
|
58 -- ppval -- cross -- dot |
|
59 |
2789
|
60 * When constructing NLConst (and other) objects, make sure that |
|
61 there are sufficient checks to ensure that the dimensions all |
|
62 conform. |
|
63 |
2439
|
64 * Allow parameters to be passed through the call to fsolve() to the |
2777
|
65 user-supplied function for Matlab compatibility. Don't place an |
2439
|
66 upper limit on the number of arguments. |
|
67 |
2330
|
68 * Check matrix classes for proper handling of empty matrices. |
|
69 |
2789
|
70 * Make operations with empty matrices produce empty matrices, for |
|
71 compatibility with Matlab (but only if Matlab 5 still does things |
|
72 this way). For example: [1, 2] * [] ==> []. |
|
73 |
2330
|
74 * Improve design of ODE, DAE, classes. |
|
75 |
|
76 * Extend meaning of .* to include v .* M or M .* v (where v is a |
|
77 column vector with the same number of rows as M) to scale rows of |
|
78 M by elements of v. Similarly, if w is a row vector with as many |
|
79 columns as M, then either w .* M or M .* w scales the columns of |
|
80 M. |
|
81 |
2497
|
82 * Given two vectors x and y of length m and n, implement a function |
|
83 outer (x, y, f) that returns an m-by-n matrix with entries |
|
84 f (x(i), y(j)). If f is omitted, multiplication is the default. |
2506
|
85 Should probably work for any vectors, not just if x is a column |
|
86 vector and y is a row vector. |
2497
|
87 |
2789
|
88 * Make it possible to solve b = L \ x efficiently, either by |
|
89 providing an explicit function call, or by automatically |
|
90 determining that L is triangular. If it is done automatically, |
|
91 provide some means for determining whether Octave has actually |
|
92 detected that the matrix is triangular. |
|
93 |
2799
|
94 * The polyfit function uses the economy QR factorization, but even |
|
95 that can take a lot of time for large datasets. Consider an |
|
96 option to compute the result with inv (A' * A) * A' * y or some |
|
97 other faster method.d Possibly just switch to this method if the |
|
98 dataset is larger than some value. |
|
99 |
3141
|
100 * Make QR more memory efficient for large matrices when not all the |
|
101 columns of Q are required (apparently this is not handled by the |
|
102 lapack code yet). |
|
103 |
2799
|
104 * Consider making the behavior of the / and \ operators for |
3758
|
105 non-square systems compatible with Matlab. Currently, they return |
|
106 the minimum norm solution from DGELSS, which behaves differently. |
2799
|
107 |
2330
|
108 -------- |
|
109 Graphics: |
|
110 -------- |
|
111 |
|
112 * Make plotting with plplot work. |
|
113 |
|
114 * Fix interface with gnuplot to wait for gnuplot to output any text |
|
115 before octave returns a prompt. Possible by implementing two |
|
116 way communication between gnuplot and Octave. |
|
117 |
3136
|
118 * Handle gnuplot ranges correctly for parametric modes (accept 3 |
|
119 ranges for 2d plots and 5 ranges for 3d plots). |
|
120 |
2330
|
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 |
2799
|
138 * If using gnuplot, consider setting a smaller default for the |
|
139 `zero' value (e.g., set zero sqrt (realmin) or something). |
|
140 |
2330
|
141 ------- |
|
142 Strings: |
|
143 ------- |
|
144 |
2789
|
145 * Improve performance of string functions, particularly for |
|
146 searching and replacing. |
|
147 |
|
148 * Provide some regex matching functions. |
|
149 |
2330
|
150 * Convert string functions to work on string arrays. |
|
151 |
|
152 * Make find work for strings. |
|
153 |
2378
|
154 * Consider making octave_print_internal() print some sort of text |
|
155 representation for unprintable characters instead of sending them |
|
156 directly to the terminal. (But don't do this for fprintf!) |
|
157 |
|
158 * Consider changing the default value of `string_fill_char' from SPC |
|
159 to NUL. |
|
160 |
2560
|
161 * Consider making ["test", []] ==> "test", for compatibility with |
|
162 Matlab, at least when some set of preferences are set. |
|
163 |
2330
|
164 ---------------- |
|
165 Other Data Types: |
|
166 ---------------- |
|
167 |
|
168 * Template functions for mixed-type ops. |
|
169 |
|
170 ------------------------ |
|
171 Graphical User Interface: |
|
172 ------------------------ |
|
173 |
|
174 * In an X11 or other windowing environment, allow the user to pop up |
|
175 windows for menus and other purposes. A good place to start might |
|
176 be Tk, as long as Tcl is avoided. |
|
177 |
|
178 * Add a way to handle events, like alarms, mouse clicks, etc. |
|
179 |
|
180 ------------ |
|
181 Input/Output: |
|
182 ------------ |
|
183 |
|
184 * Make fread and fwrite work for complex data. Iostreams based |
|
185 versions of these functions would also be nice, and if you are |
|
186 working on them, it would be good to support other size |
|
187 specifications (integer*2, etc.). |
|
188 |
5008
|
189 * Make fread and fopen look in LOADPATH for files. |
2330
|
190 |
|
191 * Make load and save look for <file>.mat if only given <file>. |
|
192 |
2799
|
193 Potential sticky points: |
|
194 |
|
195 - For load, if both foo and foo.mat exist, should it prefer foo |
|
196 or foo.mat? Should the preference depend on the arguments to |
|
197 load? I think it should only prefer .mat files if the |
|
198 -mat-binary option is supplied, or if the file foo.mat exists |
|
199 but the file foo does not. |
|
200 |
|
201 - For save, should it prefer to create foo or foo.mat? Should |
|
202 the preference depend on the arguments to save? Should the |
|
203 default_save_format imply a default preference? I think it |
|
204 should only create .mat files if it is writing Matlab |
|
205 compatible files. |
|
206 |
2330
|
207 * Move some pr-output stuff to liboctave. |
|
208 |
|
209 * Make the cutoff point for changing to packed storage a |
|
210 user-preference variable with default value 8192. |
|
211 |
2378
|
212 * Make it possible to load other image formats (ppm, pbm, etc. would |
|
213 probably be best since there are already filters to convert to |
|
214 these formats from others.) |
|
215 |
2330
|
216 * Complain if there is not enough disk space available (I think |
|
217 there is simply not enough error checking in the code that handles |
|
218 writing data). |
|
219 |
|
220 * Make it possible to tie arbitrary input and output streams |
|
221 together, similar to the way iostreams can be tied together. |
|
222 |
|
223 ----------- |
|
224 Interpreter: |
|
225 ----------- |
|
226 |
3162
|
227 * Allow customization of the debug prompt. |
|
228 |
|
229 * For the keyboard function, parse return (or quit) more |
|
230 intelligently so that something like |
|
231 |
|
232 debug> x = 1; return |
|
233 |
|
234 will work as expected. |
|
235 |
5008
|
236 * Handle multi-line input at the keyboard/debug prompt correctly. |
|
237 |
2601
|
238 * Fix the parser so that |
|
239 |
3081
|
240 if (expr) 'this is a string' end |
|
241 |
|
242 is parsed as IF expr STRING END. |
|
243 |
2330
|
244 * Consider grouping all preference variables in a structure instead |
|
245 of further polluting the namespace. Maybe `Octave_options.xxx'? |
|
246 |
|
247 * Rewrite functions in input.cc to do the right thing in all cases |
|
248 of using readline, forced interactive behavior, echoing of input, |
|
249 etc. |
|
250 |
|
251 * Consider making linspace() and logspace() return the value |
|
252 corresponding to the first argument if the number of requested |
|
253 points is 1. |
|
254 |
|
255 * Consider allowing an arbitrary property list to be attached to any |
|
256 variable. This could be a more general way to handle the help |
|
257 string that can currently be added with `document'. |
|
258 |
|
259 * Allow more command line options to be accessible as built-in |
|
260 variables (--echo-commands, etc.). |
|
261 |
|
262 * Allow `octave -c STRING' to execute commands from STRING then |
|
263 exit. |
|
264 |
|
265 * Make the interpreter run faster. |
|
266 |
|
267 * Make it possible to disable or enable all warnings on an |
|
268 individual basis from the command line or via some built-in |
|
269 structure variable. |
|
270 |
2378
|
271 * Warn about complex comparisons? Could just use double_value() or |
|
272 matrix_value() instead of explicit conversions to real types. For |
|
273 this to really be useful, some additional information must be |
|
274 available to point to the location of the code that triggers the |
|
275 warning. |
|
276 |
4325
|
277 * Allow arbitrary lower bounds for array indexing. |
2330
|
278 |
4325
|
279 * Improve performance of recursive function calls. |
2330
|
280 |
|
281 * Improve the way ignore_function_time_stamp works to allow |
3167
|
282 selecting by individual directories or functions. |
2330
|
283 |
|
284 * Add a command-line option to tell Octave to just do syntax |
|
285 checking and not execute statements. |
|
286 |
|
287 * Is it necessary for do_binary_op and do_unary_op to be friends of |
|
288 the tree_constant class. |
|
289 |
|
290 * Clean up symtab and variable stuff. |
|
291 |
|
292 * Input stream class for parser files -- must manage buffers for |
|
293 flex and context for global variable settings. |
|
294 |
3162
|
295 * make parser do more semantic checking, continue after errors when |
|
296 compiling functions, etc. |
|
297 |
2330
|
298 * Make LEXICAL_ERROR have a value that is the error message for |
|
299 parse_error() to print? |
|
300 |
|
301 * Add a run-time alias mechanism that would allow things like |
|
302 |
|
303 alias fun function_with_a_very_long_name |
|
304 |
|
305 so that `function_with_a_very_long_name' could be invoked as |
|
306 `fun'. |
|
307 |
|
308 * What should is_global() return when called for built-in variables? |
|
309 |
|
310 * Allow local changes to variables to be written more compactly than |
|
311 is currently possible with unwind_protect. For example, |
|
312 |
|
313 function f () |
|
314 local prefer_column_vectors = something; |
|
315 ... |
|
316 endfunction |
|
317 |
|
318 would be equivalent to |
|
319 |
|
320 function f () |
3758
|
321 save_prefer_column_vectors = prefer_column_vectors; |
2330
|
322 unwind_protect |
|
323 prefer_column_vectors = something; |
|
324 ... |
|
325 unwind_protect_cleanup |
|
326 prefer_column_vectors = save_prefer_column_vectors; |
|
327 end_unwind_protect |
|
328 endfunction |
|
329 |
|
330 * Fix all function files to check for bogus inputs (wrong number or |
|
331 types of input arguments, wrong number of output arguments). |
|
332 |
2789
|
333 * Reduce the memory and time required to parse very large matrix |
|
334 lists. |
|
335 |
2330
|
336 * Handle options for built-in functions more consistently. |
|
337 |
|
338 * Too much time is spent allocating and freeing memory. What can be |
|
339 done to improve performance? |
|
340 |
|
341 * Error output from Fortran code is ugly. Something should be done to |
|
342 make it look better. |
|
343 |
|
344 * It would be nice if output from the Fortran routines could be |
|
345 passed through the pager. |
|
346 |
|
347 * Attempt to recognize common subexpressions in the parser. |
|
348 |
|
349 * Handle arrays with more than two dimensions. |
|
350 |
|
351 * Consider making it possible to specify an empty matrix with a |
|
352 syntax like [](e1, e2). Of course at least one of the expressions |
|
353 must be zero... |
|
354 |
|
355 * Is Matrix::fortran_vec() really necessary? |
2862
|
356 |
2330
|
357 * print_usage() should set error_state in most cases? |
|
358 |
|
359 * Add a command that works like bash's `builtin' command. |
|
360 |
3758
|
361 * Handle end-of-line comments correctly in parse trees for use with |
|
362 the type command. |
2330
|
363 |
|
364 * Clean up eye, eval, feval, keyboard, input, ones, zeros. |
|
365 |
|
366 * It would be nice to have an interactive debugger. |
|
367 |
2378
|
368 * Make whos report total memory used by variables (and functions?). |
|
369 |
2746
|
370 * Rewrite whos and the symbol_record_info class. Write a built-in |
|
371 function that gives all the basic information, then write who and |
|
372 whos as M-files. |
2439
|
373 |
3125
|
374 * Make whos work for structure elements: |
|
375 |
|
376 prot type rows cols name |
|
377 ==== ==== ==== ==== ==== |
4325
|
378 wd matrix m n struct.field |
3125
|
379 |
3249
|
380 * Allow who to return information as a list of strings. |
|
381 |
2799
|
382 * On systems that support matherr(), make it possible for users to |
|
383 enable the printing of warning messages. |
|
384 |
2862
|
385 * Make it possible to mark variables and functions as read-only. |
|
386 |
3060
|
387 * Provide a built-in function for applying a scalar function to an |
|
388 array. Be sure to note in the manual that this is not the |
|
389 preferred way to write a function that can handle vector/matrix |
|
390 arguments because there is a significant overhead for function |
|
391 calls. If you are really looking to make a function work for |
|
392 vector/matrix arguments and you want it to run fast, you should |
|
393 write it in terms of the existing vector/matrix operators as much |
|
394 as possible. |
|
395 |
3092
|
396 * Make it possible to write a function that gets a reference to a |
|
397 matrix in memory and change one or more elements without |
|
398 generating a second copy of the data. |
|
399 |
2330
|
400 ------- |
|
401 History: |
|
402 ------- |
|
403 |
|
404 * Add an option to allow saving input from script files in the |
|
405 history list. |
|
406 |
3092
|
407 * The history command should accept two numeric arguments to |
|
408 indicate a range of history entries to display, save or read. |
|
409 |
2862
|
410 * Add an option to include information about the Octave session in |
|
411 the history list. Possibly a time/date stamp and the current |
|
412 Octave line number, appended as a comment (users should probably |
|
413 be able to control the format). |
|
414 |
5026
|
415 * Avoid writing the history file if the history list has not |
|
416 changed. |
|
417 |
|
418 * Avoid permission errors if the history file cannot be opened for |
|
419 writing. |
|
420 |
2330
|
421 * Fix history problems -- core dump if multiple processes are |
|
422 writing to the same history file? |
|
423 |
|
424 ------------------------------ |
|
425 Configuration and Installation: |
|
426 ------------------------------ |
|
427 |
2473
|
428 * Add an --enable-pathsearch option to configure to make it possible |
|
429 to configure and run without kpathsea. |
|
430 |
2330
|
431 * Makefile changes: |
|
432 -- eliminate for loops |
|
433 -- define shell commands or eliminate them |
|
434 -- verify distclean |
|
435 -- consolidate targets |
|
436 |
|
437 * Make it possible to configure so that installed binaries and |
|
438 shared libraries are stripped. |
|
439 |
3069
|
440 * Create a docs-only distribution? |
|
441 |
2330
|
442 ------------------------------ |
|
443 Documentation and On-Line Help: |
|
444 ------------------------------ |
|
445 |
|
446 * Document new features. |
|
447 -- history-search-{back,for}ward. |
|
448 -- Other stuff mentioned in the NEWS file. |
|
449 |
|
450 * Improve the Texinfo Documentation for the interpreter. It would |
|
451 be useful to have lots more examples, to not have so many forward |
|
452 references, and to not have very many simple lists of functions. |
|
453 |
|
454 * The docs should mention something about efficiency and that using |
|
455 array operations is almost always a good idea for speed. |
|
456 |
|
457 * Texinfo documentation for the C++ classes. |
|
458 |
|
459 * Support multiple info files, perhaps allowing one or more in each |
|
460 directory in the LOADPATH, so that local collections of M-files |
|
461 could be documented with Info. |
|
462 |
|
463 * Improve help messages for operators and keywords in help.cc. |
|
464 |
|
465 * Make index entries more consistent to improve behavior of `help -i'. |
|
466 |
|
467 * Make `help -i' try to find a whole word match first. |
|
468 |
|
469 * Allow help for local additions to be accessible with help -i. |
|
470 |
3130
|
471 * Clean up help stuff. |
|
472 |
2330
|
473 * Demo files. |
|
474 |
|
475 * As the number of m-files with octave grows perhaps a 'Contents.m' |
|
476 file for each toolbox (directory) would be appropriate so one |
|
477 knows exactly what functions are in a toolbox with a quick look. |
|
478 It would be best to generate information for each function directly |
|
479 from the M-files, so that the information doesn't have to be |
|
480 duplicated, and will remain current if the M-files change. It |
|
481 would also be best to do as much of this as possible in an M-file, |
|
482 though I wouldn't mind adding some basic support for listing the |
|
483 names of all the directories in the LOADPATH, and the names of all |
|
484 the M-files in a given directory if that is needed. |
|
485 |
2787
|
486 Also make it possible to recursively search for Contents files: |
|
487 |
|
488 help dir -- Contents from dir |
|
489 help dir// -- Contents from dir and all its subdirectories |
|
490 help dir1/dir2 -- Contents from dir2 which is under dir1 |
|
491 |
2330
|
492 * Some sort of blurb (2-3 pages) describing Octave in a reasonably |
|
493 coherent way, where to get it etc., perhaps formatted pretty, |
|
494 i.e. not just text. Maybe start with the latest Announce file. |
|
495 |
|
496 ----- |
|
497 Tests: |
|
498 ----- |
|
499 |
|
500 * Improved set of tests: |
|
501 |
|
502 -- Tests for various functions. Would be nice to have a test file |
|
503 corresponding to every function. |
|
504 |
|
505 -- Tests for element by element operators: |
|
506 + - .* ./ .\ .^ | & < <= == >= > != ! |
|
507 |
|
508 -- Tests for boolean operators: && || |
|
509 |
|
510 -- Tests for other operators: * / \ ' .' |
|
511 |
|
512 -- Tests from bug reports. |
|
513 |
|
514 -- Tests for indexed assignment. Need to consider the following: |
|
515 o fortran-style indexing |
|
516 o zero-one indexing |
|
517 o assignment of empty matrix as well as values |
|
518 o resizing |
|
519 |
|
520 * Tests for all internal functions. |
|
521 |
|
522 ----------- |
|
523 Programming: |
|
524 ----------- |
|
525 |
2475
|
526 * Better error messages for missing operators? |
|
527 |
|
528 * Eliminate duplicate enums in pt-exp.cc, pt-const.cc, and ov.cc. |
|
529 |
|
530 * Handle octave_print_internal() stuff at the liboctave level. Then |
|
531 the octave_value classes could just call on the print() methods |
|
532 for the underlying classes. |
|
533 |
|
534 * As much as possible, eliminate explicit checks for the types of |
|
535 octave_value objects so that user-defined types will automatically |
|
536 do the right thing in more cases. |
|
537 |
2330
|
538 * Only include config.h in files that actually need it, instead of |
|
539 including it in every .cc file. Unfortunately, this might not be |
|
540 so easy to figure out. |
|
541 |
|
542 * GNU coding standards: |
|
543 |
|
544 -- Add a `Makefile' target to the Makefiles. |
|
545 -- Comments on #else and #endif preprocessor commands. |
|
546 -- Change error message format to match standards everywhere. |
|
547 |
|
548 * Use STL stuff instead of libg++ lists, maps, and stacks. |
|
549 |
|
550 * Eliminate more global variables. |
|
551 |
|
552 * Move procstream to liboctave. |
|
553 |
|
554 * Use references and classes in more places. |
|
555 |
|
556 * Share more code among the various *_options functions. |
|
557 |
|
558 ------------- |
|
559 Miscellaneous: |
|
560 ------------- |
|
561 |
|
562 * Implement some functions for interprocess communication: bind, |
|
563 accept, connect, gethostbyname, etc. |
|
564 |
2454
|
565 * The installation process should also install octave.el. This |
|
566 needs to detect the appropriate Emacs binary to use to |
|
567 byte-compile the .el file. Following GNU Emacs philosophy, |
|
568 installation would be into $(prefix)/share/emacs/site-lisp by |
|
569 default, but it should be selectable. |
|
570 |
2330
|
571 * The ability to transparently handle very large files: |
|
572 |
|
573 Juhana K Kouhia <kouhia@nic.funet.fi> wrote: |
|
574 |
|
575 If I have a one-dimensional signal data with the size 400 |
|
576 Mbytes, then what are my choices to operate with it: |
|
577 |
|
578 * I have to split the data |
|
579 * Octave has a virtual memory on its own and I don't have to |
|
580 worry about the splitting. |
|
581 |
|
582 If I split the data, then my easily programmed processing |
|
583 programs will become hard to program. |
|
584 |
|
585 If possible, I would like to have the virtual memory system in |
|
586 Octave i.e. the all big files, the user see as one big array or |
|
587 such. There could be several user selectable models to do the |
|
588 virtual memory depending on what kind of data the user have (1d, |
|
589 2d) and in what order they are processed (stream or random |
|
590 access). |
|
591 |
|
592 Perhaps this can be done entirely with a library of M-files. |
|
593 |
3136
|
594 * An interface to gdb. |
|
595 |
|
596 Michael Smolsky <fnsiguc@weizmann.weizmann.ac.il> wrote: |
|
597 |
|
598 I was thinking about a tool, which could be very useful for me |
|
599 in my numerical simulation work. It is an interconnection |
|
600 between gdb and octave. We are often managing very large arrays |
|
601 of data in our fortran or c codes, which might be studied with |
|
602 the help of octave at the algorithm development stages. Assume |
|
603 you're coding, say, wave equation. And want to debug the |
|
604 code. It would be great to pick some array from the memory of |
|
605 the code you're develloping, fft it and see the image as a |
|
606 log-log plot of the spectral density. I'm facing similar |
|
607 problems now. To avoid high c-development cost, I develop in |
|
608 matlab/octave, and then rewrite into c. It might be so much |
|
609 easier, if I could off-load a c array right from the debugger |
|
610 into octave, study it, and, perhaps, change some [many] values |
|
611 with a convenient matlab/octave syntax, similar to |
|
612 a(:,50:250)=zeros(100,200), and then store it back into the |
|
613 memory of my c code. |
|
614 |
2789
|
615 * Add a definition to lgrind so that it supports Octave. |
|
616 (See http://www.tex.ac.uk/tex-archive/support/lgrind/ for more |
|
617 information about lgrind.) |
|
618 |
2330
|
619 ------ |
|
620 Always: |
|
621 ------ |
|
622 |
|
623 * Squash bugs. |
|
624 |
|
625 --30-- |
3162
|
626 </pre> |
|
627 </html> |