annotate TODO @ 12720:52ca082757c2 octave-forge tip

Update copyright notices.
author i7tiol
date Sat, 27 Feb 2016 11:21:29 +0000
parents af8cd087ddbb
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4581
88daa97b44fb update TODO
adb014
parents: 3284
diff changeset
1 When transitioning to Octave 3.1
88daa97b44fb update TODO
adb014
parents: 3284
diff changeset
2 ================================
6813
e6f49c2e9b18 Remove finished tasks from TODO
hauberg
parents: 5020
diff changeset
3 * Remove the functions dlmread, dlmwrite, csvread, csvwrite
4581
88daa97b44fb update TODO
adb014
parents: 3284
diff changeset
4 * Remove dependency of ga on miscellaneous
88daa97b44fb update TODO
adb014
parents: 3284
diff changeset
5
2707
672dab6d01b0 Update the TODO list
adb014
parents: 663
diff changeset
6 Packages
672dab6d01b0 Update the TODO list
adb014
parents: 663
diff changeset
7 ========
3284
e872c2f4baf8 Update for the external dependencies
adb014
parents: 3038
diff changeset
8 * GPC package needs conversion to package manager
e872c2f4baf8 Update for the external dependencies
adb014
parents: 3038
diff changeset
9
e872c2f4baf8 Update for the external dependencies
adb014
parents: 3038
diff changeset
10 * gsl_sf.cc is a derived file, but the function reference links to
e872c2f4baf8 Update for the external dependencies
adb014
parents: 3038
diff changeset
11 rather than the template, consider a better means of addressing this.
2707
672dab6d01b0 Update the TODO list
adb014
parents: 663
diff changeset
12
663
7c9463cf15d4 minor updates. Still need to add the entry: rename TODO to IGNORE
pkienzle
parents: 153
diff changeset
13 Bugs
7c9463cf15d4 minor updates. Still need to add the entry: rename TODO to IGNORE
pkienzle
parents: 153
diff changeset
14 ====
7c9463cf15d4 minor updates. Still need to add the entry: rename TODO to IGNORE
pkienzle
parents: 153
diff changeset
15 * ausave -> auload changes the data
7c9463cf15d4 minor updates. Still need to add the entry: rename TODO to IGNORE
pkienzle
parents: 153
diff changeset
16
0
6b33357c7561 Initial revision
pkienzle
parents:
diff changeset
17 Admin
6b33357c7561 Initial revision
pkienzle
parents:
diff changeset
18 =====
6b33357c7561 Initial revision
pkienzle
parents:
diff changeset
19
663
7c9463cf15d4 minor updates. Still need to add the entry: rename TODO to IGNORE
pkienzle
parents: 153
diff changeset
20 * Include support for more tests in the makefile.
0
6b33357c7561 Initial revision
pkienzle
parents:
diff changeset
21
6b33357c7561 Initial revision
pkienzle
parents:
diff changeset
22 * Maintain global TODO document by automatically extracting ## TODO:
6b33357c7561 Initial revision
pkienzle
parents:
diff changeset
23 comments from all of the scripts. Update all functions to include
6b33357c7561 Initial revision
pkienzle
parents:
diff changeset
24 compatibility notes (aka missing features) in these comments. Some
6b33357c7561 Initial revision
pkienzle
parents:
diff changeset
25 function specific notes in matcompat/compat.dat belong in TODO comments.
6b33357c7561 Initial revision
pkienzle
parents:
diff changeset
26
6b33357c7561 Initial revision
pkienzle
parents:
diff changeset
27 * nonfree/gpc uses its own configure script and build process
6b33357c7561 Initial revision
pkienzle
parents:
diff changeset
28
6b33357c7561 Initial revision
pkienzle
parents:
diff changeset
29 All functions
6b33357c7561 Initial revision
pkienzle
parents:
diff changeset
30 =============
6b33357c7561 Initial revision
pkienzle
parents:
diff changeset
31
2707
672dab6d01b0 Update the TODO list
adb014
parents: 663
diff changeset
32 * Use texinfo in the function descriptions.
0
6b33357c7561 Initial revision
pkienzle
parents:
diff changeset
33
6b33357c7561 Initial revision
pkienzle
parents:
diff changeset
34 * Add test and demo scripts for each function. Should we use
6b33357c7561 Initial revision
pkienzle
parents:
diff changeset
35 extra/testfun, or should we use name_test.m and name_demo.m?
6b33357c7561 Initial revision
pkienzle
parents:
diff changeset
36
6b33357c7561 Initial revision
pkienzle
parents:
diff changeset
37 * Replace x(find(cond)) with x(cond) since it is faster and cleaner.
6b33357c7561 Initial revision
pkienzle
parents:
diff changeset
38 Remove unwind_protect blocks for do_fortran_indexing, since most
2707
672dab6d01b0 Update the TODO list
adb014
parents: 663
diff changeset
39 instances will be covered by this.
0
6b33357c7561 Initial revision
pkienzle
parents:
diff changeset
40
6b33357c7561 Initial revision
pkienzle
parents:
diff changeset
41 * Replace max(max(x)) with max(x(:)), and so on for min, sum, etc.