changeset 22:1a26d85a01be

no news is good news
author Håkan Fors nilsson <c04hfn@cs.umu.se>
date Mon, 17 Nov 2008 10:38:05 +0100
parents 905659caf44b
children ad4ba83d0a43
files ChangeLog NEWS
diffstat 2 files changed, 16 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Nov 17 10:02:52 2008 +0100
+++ b/ChangeLog	Mon Nov 17 10:38:05 2008 +0100
@@ -1,3 +1,10 @@
+-*- coding:utf-8 -*-
+
+2008-11-10  HÃ¥kan Fors Nilsson  <c04hfn@cs.umu.se>
+
+	* octave_to_python.cc: Added functions octcell_to_pyobject and octmap_to_pyobject.
+	* python_to_octave.cc: Added functions pydict_to_octmap and pylist_to_cellarray.
+
 2008-11-10  David Grundberg  <individ@acc.umu.se>
 
 	* octave_to_python.cc: Remove static storage class on explicitely
--- a/NEWS	Mon Nov 17 10:02:52 2008 +0100
+++ b/NEWS	Mon Nov 17 10:38:05 2008 +0100
@@ -0,0 +1,9 @@
+Version 0.1 bzr 
+
+* Added functionality for one dimensional cell arrays. Python list represents
+a one dimensional cell array. Pytave will throw an exception if a cell array 
+has higher dimensions. 
+
+* Added functionality for structs, a Octave struct is represented by a python
+dictionary. The implementation tries to be as true as possible to Octaves 
+struct constructor.