public
Description: A Ruby interface to the MATLAB interpreted language
Clone URL: git://github.com/daikini/matlab-ruby.git
matlab-ruby / History.txt
100644 40 lines (27 sloc) 1.183 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
== 2.0.3 / 2008-05-19
 
* 2 bug fixes
  * Empty matrices are converted to empty ruby arrays.
  * Empty ruby arrays are converted to an empty MATLAB matrix
 
== 2.0.2 / 2008-05-19
 
* 1 bug fix
  * Empty matrices are properly converted to empty Matlab::Matrices instead of floats.
 
== 2.0.1 / 2008-02-21
 
* 1 minor enhancement
  * Added block usage to Matlab::Engine.new
  
== 2.0.0 / 2008-01-03
 
* 1 bug fix
  * Added NilClass to_ruby method.
* 3 changes
  * Removed dynamic variable name setters/getters in favor of put_variable, get_variable methods.
  * 1 dimensional MATLAB matrices are now converted into a normal Ruby Arrays.
  * 1 dimensional MATLAB struct matrices are now converted into normal Ruby Hashes.
* 3 enhancements
  * MATLAB functions may now be executed directly from the engine instead of having to use eval_string.
  * Ruby Arrays are now converted into 1 dimensional MATLAB matrices.
  * Ruby Hashes are now converted into 1 dimensional MATLAB struct matrices.
  
== 1.0.1 / 2007-04-27
 
* 1 bug fix
  * Need to check for nil value during MATLAB to Ruby StructMatrix conversion otherwise it segfaults.
 
== 1.0.0 / 2007-04-06
 
* 1 major enhancement
  * Birthday!