changeset 8225:53202d60086f

Minor update to the NEWS file
author David Bateman <dbateman@free.fr>
date Thu, 16 Oct 2008 10:39:19 +0100
parents 62d90e049d4f
children 50fa927b4e49
files ChangeLog NEWS
diffstat 2 files changed, 12 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu Oct 16 10:31:37 2008 +0100
+++ b/ChangeLog	Thu Oct 16 10:39:19 2008 +0100
@@ -1,3 +1,7 @@
+2008-10-16  David Bateman  <dbateman@free.fr>
+
+	* NEWS: Minor update.
+
 2008-10-15  David Bateman  <dbateman@free.fr>
 
 	* examples/polynomial/display.m, examples/polynomial/double.m,
--- a/NEWS	Thu Oct 16 10:31:37 2008 +0100
+++ b/NEWS	Thu Oct 16 10:39:19 2008 +0100
@@ -16,9 +16,8 @@
              refreshdata();
            endfor
 
-    works as expected.
-
-    TO BE WRITTEN (Shai / Micheal inputs please)
+    works as expected. This capability has be used to introduce stem-series,
+    bar-series, etc objects for better Matlab compatibility.
 
  ** Experimental OpenGL/FLTK based backend to replace gnuplot
 
@@ -34,8 +33,6 @@
 
     where "h" is a valid figure handle.
 
-    TO BE WRITTEN (Shai / Micheal inputs please)
-
  ** Eliminate the functions for direct access to gnuplot from Octave.
     The functions __gnuplot_plot__, __gnuplot_set__, __gnuplot_raw__,
      __gnuplot_show__, __gnuplot_replot__, __gnuplot_splot__,
@@ -50,7 +47,12 @@
 
  ** Object Oriented Programming
 
-    TO BE WRITTEN
+    Octave now includes OOP features and the user can create their 
+    own class objects and overloaded functions and operators. For
+    example, all methods of a class called "myclass" will be found in 
+    a directory "@myclass" on the users path. The class specific versions
+    of functions and operators take precedence over the generic versions
+    of these functions. See the Octave manual for more details.
 
  ** Block comments
     Commented code can be between matching "%{" and "%}" markers, even