2003-03-04  Masahiro TANAKA  <masa@ir.isas.ac.jp>

	* narray.c (na_alloc_struct): 
	  NArray-specific GC is enabled for ruby-1.8.0.

	* ver 0.5.7

2003-03-03  Masahiro TANAKA  <masa@ir.isas.ac.jp>

	* na_random.c: created.

	* lib/narray_ext.rb (rank_total): 
	 Array#indices is obsolete. use Array#select.
	 Default `to_a' will be obsolete.

	* lib/nmatrix.rb: Object#type is obsolete. use Object#class.

2003-03-01  Masahiro TANAKA  <masa@ir.isas.ac.jp>

	* narray_ext.rb (swap_byte,hton,htov): removed.
	* mkop.rb, mknafunc.rb, na_func.c, narray_local.h: 
	  add C-version of swap_byte, hton, htov.

2003-02-28  Masahiro TANAKA  <masa@ir.isas.ac.jp>

	* extconf.rb: do not add "--output-lib libnarray.a"
	  to link options if Cygwin with Ruby 1.8.0.
	  Thank MoonWolf for the note.

2002-11-25  Masahiro TANAKA  <masa@ir.isas.ac.jp>
	* na_func.c (na_cumsum_bang,na_cumsum_): created.
	  Thank Jon Davidson for the proposal.

2002-09-15  Masahiro TANAKA  <masa@ir.isas.ac.jp>

	* na_array.c (na_do_mdai):
	  Index is not `i' but `j' in recursive array check.
	  Thank Ara Howard for the bug report.

2002-05-30 WATANABE Hirofumi <eban@os.rim.or.jp>

	* extconf.rb: to build in another directory than source tree.
	* depend: ditto.
	
2002-05-18  Masahiro TANAKA  <masa@ir.isas.ac.jp>

	* lib/narray_ext.rb (NArray#==): return false unless other is NArray.

	* narray.h, narray_local.h, narray.c:
	  move na_sizeof variable from narray_local.h to narray.h.
	  const keyword added.  Thanks to Horinouchi-san.
	* narray.c (na_get_typecode): change to public method.
	* narray.c (na_sizeof,na_typestring): const keyword added.
	* mkop.rb : ditto.
	* na_func.c (na_unary_func): ditto.
	* mkmath.rb : dismiss sincos()

2002-04-11  Masahiro TANAKA  <masa@ir.isas.ac.jp>

	* mkmath.rb (asinh,acosh,atanh): better precision.

2002-04-10  Masahiro TANAKA  <masa@ir.isas.ac.jp>

	* mkop.rb (SetFucs): should use INT2NUM to extract 32-bit int.
	 Thanks to Kozuka-san.

2002-03-26  Masahiro TANAKA  <masa@ir.isas.ac.jp>

	* narray.def: remove unused entry. Thanks to Watanabe-san.

2002-03-24  Masahiro TANAKA  <masa@ir.isas.ac.jp>

	* na_array.c: 
	  New multi-dimentional array investigation is introduced.
	  Scan array only once and check recursive array.

	* narray.h, narray_local.h:
	  Local definisions in narray.h are moved into narray_local.h.

	* ver 0.5.6
	
2002-03-17  Masahiro TANAKA  <masa@ir.isas.ac.jp>

	* nmatrix.rb (NMatrix#*): accept Array as an argument.

2002-02-26  Masahiro TANAKA  <masa@ir.isas.ac.jp>

	* na_array.c (na_copy_ary_to_nary): accept Range as a sequence.

2002-02-06  Masahiro TANAKA  <masa@ir.isas.ac.jp>

	* narray.c, na_func.c, na_index.c, na_linalg.c, na_fftw.c, mkmath.rb:
	  add volatile keyword instead of na_touch_object() function.

2002-01-25  Masahiro TANAKA  <masa@ir.isas.ac.jp>

	* na_array.c (na_to_array0): Bug: GC fails if ary->len is set
	  in advance.  Thanks to Bil Kleb.

2001-12-30  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* extconf.rb: Modify install_rb to install narray.h, narray_config.h.
	* na_index.c (na_aref,na_aset):
	  Mask support.  Thanks to T.Horinoichi.
	* mkop.rb: Mask functions added.
	* narray.h: Macros added.
	* narray.def: created.

	* ver 0.5.5

2001-11-20 Takeshi Horinouchi <horinout@kurasc.kyoto-u.ac.jp>

	* narray.c (na_get_typecode): Bug: "!" needed at strncmp.
	* Mask support in [], []=.
	  na_aref/aset_mask(), na_count_true/false() added.
          Methods mask, count_true, count_false added.
	* test/testmask.rb: created.

2001-07-01  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* narray.h: introduce na_index_t.
	* na_func.c (na_init_slice,na_loop_index_ref,na_loop_general): 
	  change to na_index_t.
	* na_index.c: modify EXCL(range) to use excule_end?.
	* na_index.c (na_aref_single_dim): remain array if sl->step!=0.
	  i.e., a[0..0] results in 1-element array.
	* na_func.c (Init_na_funcs): alias image, arg, conjugate.

	* ver 0.5.4

2001-06-30  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* extconf.rb: check sys/typedef.h, u_int8_t, int16_t, int32_t.
	  generating narray_config.h.
	* narray.h: conditional typedef. define NARRAY_H.
	* na_func.c (Init_na_funcs): change == to eq. add gt,ge,lt,le.
	* lib/narray_ext.rb: new entry: ==, all?, any?, none?.
	
	* mkop.rb: new entry: conditional XOR.
	* na_func.c (na_cond_xor): ditto.
	* narray.h: ditto.

2001-06-05  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* na_index.c (na_aref_body): NVector#[] should return NVector
	  class even when single argument of range/array.
	  Thanks to Daishi Harada.
	* narray.h (na_class_dim): delete redundant ";"
	* extconf.rb: delete config_dir("narray"), add dir_config("fftw").

2001-06-04  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* na_index.c (na_aref_multi_dim_single_elm): 
	  do not change class even if a[0..0,0..0] for NMatrix.
	  Thanks to Daishi Harada.
	* narray.c (na_inspect): rb_str_cat(str,": \n",4);
	  not 4, but 3. Thanks to Matju.

2001-05-11  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* nimage/extconf.rb: add dir_config("x11"). rm have_header.

2001-04-10  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* narray.h: exclude typedef int32_t,int16_t,u_int8_t for Mac OS X.
	  Thanks to T.Yamamoto.
	* mkmath.rb (atan,atanh): avoid non-constant initializer for complex.

2001-04-03  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* na_array.c (na_search_rank): ignore empty array.
	* na_array.c (na_copy_ary_to_nary): ignore empty array and nil.
	* ver 0.5.3

2001-04-02  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* narray.c (na_to_s): bug: na_sizeof[] is necessary.
	  Thank matju for report.

2001-01-29  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* mkop.rb (Angl): added.
	* na_func.c (na_angle): added.  Thank M.Tagusai for proposal.
	* ver 0.5.2

2001-01-21  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* mkop.rb, mkmath.rb: loop-end condition changed from n>0 to n.
	  5% speed up for multiplication of double.

2001-01-20  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* mkop.rb (DivU,DivB): raise error if divided by 0.

2001-01-19  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* mkop.rb (round): bug: has omitted the case of 0.

2001-01-18  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* narray.c (na_is_empty): added.
	* na_func.c (na_exec_unary,na_exec_binary,na_make_object_extend):
	  enable operation of empty array.

2001-01-17  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* na_index.c (na_aset_array_index): allow a[[]]=1.

2001-01-14  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* na_index.c (na_ary_to_index): bug: should raise error if < -n.

2001-01-13  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* na_func.c (na_unary_func): should call func of self-type.
	  Thanks to Matju.

2001-01-06  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* narray.c (na_s_new_int): check argc==0. Thanks to Matju.

2000-12-10  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* ver 0.5.1

2000-12-11  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* narray.c (na_alloc_struct): cope with empty array.
	* na_func.c (na_exec_unary,na_shape_max_2obj): empty check.

2000-12-10  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* narray.c (na_random): disable initalizing seed.
	* na_touch_object created.
	* free -> xfree.  Thanks to Naoki Matsumoto.

2000-12-07  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* ver 0.5.0.p2

	* fix problems for VC++. Thanks to Naoki Matsumoto.
	* mkmath.rb: create asinh, acosh, atanh missing in VC++.
	* mkop.rb (TpErrI): return int after rb_raise().
	* narray.h: max() -> NA_MAX(), swap() -> NA_SWAP().
	* narray.c (na_get_typecode): return int after rb_raise().
	* na_func.c (na_sort,na_sort_index): fix function decl. for qsort.

2000-12-01  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* ver 0.5.0.p1

	* lib/nmatrix.rb (NVector#+,-): should change Class to NArray
	  before calling super.  Thanks to Kenya OGATA.

	* na_index.c (EXCL): follow the change of EXCL() in 1.6.2.
	  Thanks to Robert Feldt.

2000-11-25  Masahiro Tanaka  <masa@ir.isas.ac.jp>

	* ver 0.5.0
	* No Log between 0.5.0 and 0.3.5.p1. Sorry.

2000-10-14  Masahiro Tanaka  <masa>

	* narray.c (na_wrap_struct_class): na_mark_ref, na_mark_obj.

2000-10-05  Masahiro Tanaka  <masa>

	* nmatrix.rb: created.
	
	* too many changes are applied to source codes. ^^;

2000-10-03  Masahiro Tanaka  <masa>

	* na_index.c (na_shrink_rank): created for general purposes.

	* narray.c (na_reshape): use new na_shrink rank.
	  recognize "true" argument.

	* lib/narray_ext.rb: use new feature of reshape

2000-10-02  Masahiro Tanaka  <masa>

	* na_index.c (na_make_slice_aset_fill): created.

	* lib/narray_ext.rb (flatten): no more use dup.

	* na_func.c (na_s_mul_sum): created.

	* narray.c (na_wrap_struct): wrap with referring class.
	(na_ref_alloc_struct): created.
	(na_reshape_ref,na_newrank_ref): created.
	(na_inspect): print class name.

	* narray.h: add "VALUE obj" elmt to "struct NARRAY".	 

2000-09-29  Masahiro Tanaka  <masa>

	* mkopfunc.rb (mulacmfunc): created.

	* mkfuncs.rb: rewrite with %w().
	(mktrifunc): renamed from mkcmpfunc. accept block.

	* na_loop.c (na_slice_set_extend): change arguments.

	* na_func.c (na_mul_acm,na_shape_max_3obj): created.
	(na_exec_trifunc_extend): a1 can be shrinkable.

2000-09-28  Masahiro Tanaka  <masa>

	* lib/narray_ext.rb (is_ineger?,is_complex?):
	  -> ineger?, complex?.

2000-09-27  Masahiro Tanaka  <masa>

	* na_index.c (na_index_analysis): add false dimension.

	* narray.c (na_clone): renamed from ns_dup.

2000-09-04  Masahiro Tanaka  <masa>

	* ver 0.3.5.p1

	* narray.c, na_array.c, na_func.c, narray.h, mknmath.rb
	  remove unused variables and functions. (-Wall check)
	  (Thanks to Robert Feldt)

	* lib/narray_ext.rb (convol): put in module FFTW. 
	  (Thanks to Robert Feldt)

2000-09-01  Masahiro Tanaka  <masa>

	* ver 0.3.5

	* narray.c (na_random): remove `seed' argument.  add rand().

2000-08-25  Masahiro Tanaka  <masa>

	* lib/narray_ext.rb: create randomn (Box-Muller).

2000-08-23  Masahiro Tanaka  <masa>

	* na_index.c (aref, aset): categolize procedures with arguments.

2000-08-02  Masahiro Tanaka  <masa>

	* lib/narray_ext.rb: create FFTW.convol.

2000-08-01  Masahiro Tanaka  <masa>

	* na_index.c (na_aref_array_index): bug fix: free index memory.

2000-07-28  Masahiro Tanaka  <masa>

	* ver 0.3.4

	* mkcmpfunc.rb : remove <=> with complex.  add ~.

	* mkopfunc.rb, na_func.c: add &, |, ^.

2000-07-27  Masahiro Tanaka  <masa>

	* mknmath.rb, lib/narray_ext.rb: add covariance.

	* mkopfunc.rb (data_mod): add imag=.

	* mksetfunc.rb: add im (ImagMul).

	* mknmath.rb, lib/narray_ext.rb: add trigonometric functions.

2000-07-26  Masahiro Tanaka  <masa>

	* na_func.c (na_exec_math_func): extract object if argument is
	  non-array.

	* lib/narray_ext.rb: add mean, stddev.

2000-07-21  Masahiro Tanaka  <masa>

	* na_index.c (na_aset): bug fix for empty index, etc.

	* na_func.c (na_shape_check): raise error if empty array.
	(na_sum_body,na_min,na_min,na_transpose): better arg-parse.
	(na_arg_to_rank,na_accum_set_shape,na_accum_shrink_rank):
	  created.

2000-07-20  Masahiro Tanaka  <masa>

	* narray.c (na_str_to_na): more size check.

	* na_index.c (na_aset): allow if src-ary has smaller dims.

	* narray.c (na_to_narray): moved from na_array.c

	* lib/narray_ext.rb: created. swap_byte, hton etc.

	* narray.c (Init_narray): change type=>typecode.
	  add NArray.dfloat, NArray::DFLOAT etc.
	  add element_size, to_binary, to_type_as_binary.

2000-07-18  Masahiro Tanaka  <masa>

	* na_loop.c (na_loop_general): created. na_loop_index is obsolete.

2000-07-17  Masahiro Tanaka  <masa>

	* na_func.c (na_sum_body,na_accum): created.

	* na_index.c (na_slice): created.

	* na_index.c (na_aref,na_aset): if the argument is an array,
	  methods [],[]= return same shape as the array.  e.g,
	  a[[[0,1],[2,3]]] creates 2-D array.

	* na_index.c
	  (na_serialize_struct,na_aref_aryindex,na_aref_single): Created.

2000-07-16  Masahiro Tanaka  <masa>

	* na_func.c (na_transpose_bifunc,na_transpose),
	  test/testtrans.rb: Created.

2000-07-15  Masahiro Tanaka  <masa>

	* ver 0.3.3

	* na_func.c (na_sort,na_sort_index,na_sort_number): Created.

	* mkfuncs.rb (mksortfunc): Created.

	* test/testsort.rb: Created.

2000-07-14  Masahiro Tanaka  <masa>

	* narray.c (Init_narray), narrah.h:  introduce NArrayScalar class.

	* narray.c (na_coerce), na_func.c (na_bifunc):	better casting.

2000-07-11  Masahiro Tanaka  <masa>

	* mk*.rb, depend: include code-generating scripts in distribution.

	* na_func.c, mkopfunc.rb: rename sub! => sbt!.

	* mkfuncs.rb: fix to work for Ruby ver 1.5.4.

2000-07-10  Masahiro Tanaka  <masa>

	* na_array.c: rename na_to_narray1 to na_ary_to_narray

	* na_array.c: reduce GC problem; delay registration of objects.
	  change return value of na_to_narray0
	  from VALUE to struct NARRAY *
	  reflect in na_ary_to_na, na_ary_to_na, na_ary_to_narray.

	* narray.h: add GetOrMakeNArray(obj,ary), FreeMadeNArray(obj,ary)

	* narray.c, na_index.c, na_func.c, na_fftw.c:
	  change na_to_narray0 to GetOrMakeNArray/FreeMadeNArray.

	* narray.c (na_free): free memory of itself structure.

	* narray.c (na_mark): pass pointer to rb_gc_mark.

	* na_array.c (na_make_inspect): return if total<0.

	* na_index.c (na_ary_to_index, na_aref, na_aset):
	  judge whether empty array.

	* naimage/demo/mandel.rb: Now no need for checking size.

	* test/testindex*.rb: print more description.

2000-07-05  Masahiro Tanaka  <masa>

	* ver 0.3.2

	* Create NImage library
