2003-12-04
	* configure.ac -> configure.in for older autoconf.  will revert later
	* some Makefile.in improvements
	* call it version 0.9.4
	* fix MatrixLUinvert bug
	* fix Makefile.in install problem
	* 0.9.5

2003-11-30
	* Now using glib random functions

2003-11-22
	* ChangeLog out of date.  Lots of recent change.  From svn log:
		remove astrtest, update Changelog
		Matrixrandomelement
		Partial zvector support added.  ZVectors only
		Added some ZMatrix routines
		some complex lapack routines
		added complex hermitian eigen solver
		ZVectorfromfile added
		zvecarray.[ch] added, mostly up to par
		dupZVecArrayandZVectors proto fix
		saveMatrixasimage added
		saveMatrixasimage tmp file removed
		saveImage added
		fixes / additions to z math
	* now uses/requires glib-2.0
	* improvement to configure.ac
	* pkg-config file added
	* lapack now a requirement
	* use autogen.sh to generate and run configure

2003-11-04
	* start adding complex vector routines (zvector.[ch])

2003-10-17
	* Matrixrandomelement(const Matrix M);

2003-10-12
	* test commit from parallax

2003-10-12
	* imported into svn

2003-10-02
	* Added (courtesy EEG):
		#define postmultiplytoMatrix(A, B) multiplytoMatrix(A, B)
		void multiplytoMatrix(const Matrix A, const Matrix B);
		void premultiplytoMatrix(const Matrix A, const Matrix B);
		void multiplyMatrixtoVector(const Matrix M, const Vector V);


2003-08-16
	* Adding support for LAPACK routines.  
		Eigen vector solver in place.
		SVD 
	* Call this version 0.8.99 --- 0.9.0 will be a tested / more complete
		version of this.

2003-07-06
	* Call this version 0.8.3
	* int Vectorisincreasing(const Vector v)
	* int Vectorisdecreasing(const Vector v)

2003-07-02
	* VectorType interpolateVector(const Vector V, double index)

2003-06-18

	* Vector weightedpolyfit(const Vector X, const Vector Y, 
		const Vector W, int order)
	* constify other polyfits

2003-05-27

	* call it 0.8.2

2003-05-03

	* Start astrometry.h:
	  void coordconv(double ai, double bi, double *ao, double *bo, int mode)
	  double coordconvangle(double ai, double bi, int mode)

2003-04-12

	* Matrixpseudoinverse()
	* polygon.[c|h]:
		int polygonside(const Vector x, const Vector y, 
			double x0, double y0);
		double polygonperimeter(const Vector x, const Vector y);
		double polygonarea(const Vector x, const Vector y);

2003-04-11

	* void antisymmetrizeMatrixinplace(Matrix M)
	* SVDdecompose -- but it doesn't totally work yet
	* Version 0.8.1

2003-04-02

	* double Matrixdeterminant(const Matrix M)
	* Matrix Matrixinvertmultiply(const Matrix A, const Matrix B)
	* Call this Version 0.8.0

2003-04-01

	* LU decompose / backsub / invert

2003-03-03

	* newVectorfromarray()

2003-02-13

	* Fixed cholesky invert (report by EEG)
	* rand_dist.h --> randdist.h in wfblib.h (report by EEG)
	* copyMatrixmultiply

2003-01-31

	* int Matrixislower(const Matrix M);
	* int Matrixisupper(const Matrix M);
	* int Matrixistridiag(const Matrix M);
	* int Matrisissymmetric(const Matrix M);
	* MatrixVectorMultiply
	* LMatrixinvert

2003-01-29

	* normalizeVector()
	* start of eigen stuff
	* Matrixmultiply --> Matrixmultiplyelements
	* Matrixdivide   --> Matrixdivideelements
	* Matrixmultiply is now real matrix multi
	* maximize_quadratic_ratio
	* Version 0.7.99

2003-01-20

	* Matrixisfinite()
	* Matrixissquare()
	* int Matrixisposdef(const Matrix M)

2003-01-15

	* Vector newunitVector(const Vector v) -- makes new unit vector

2002-11-06

	* Version 0.7.2
	* Some vec array functions added

2002-10-30

	* cholesky solver and example

2002-10-24

	* Vectormeansquare
	* Vectorsumsquare

2002-10-23

	* Version 0.7.1

2002-09-26

	* scaleVecArray

2002-09-23

	* getKeyValueVector

2002-08-18
	
	* time to bump version to 0.7.0
	* pdfplot.py:
		-m<maxvalue> for truncation
		updated Usage

2002-07-11  WFB

	* Version 0.6.5

2002-07-10  WFB

	* added KeyValueupdateparm
	* added KeyValueupdateparmdouble
	* added saveKeyValue

2002-06-19  WFB

	* added VecArrayresize()

2002-05-05  WFB

	* Version 0.6.4
	* Numerical Recipes bessel functions suck.  Replaced with good ones.
	* Added bessel_[JY]_[01]
	* Root finders for cubic and quartic polynomials (from spekl)

2002-05-04  WFB

	* Version 0.6.3
	* add Rice distribution
	* new files mathfunc.[ch] with bessel I0, I1
	* Vectormoment

2002-05-02  WFB

	* Added AN table to UVFits
	* added rand_rice

2002-05-01  WFB

	* Version now 0.6.2
	* added byteorder functions
	* more work on fits

2002-04-30  WFB

	* Version now 0.6.0
	* basic Cube functions
	* Version now 0.6.1
	* KeyValueprint
	* fitsbase implemented

2002-04-28  WFB

	* Matrix[max,min]value
	* Matrixpeakup
	* version now 0.5.10

2002-04-08  WFB

	* cfitsio initial support -- writing of fits images
		- need to improve configure.in

2002-03-16  WFB

	* Minor function updates
	* FFT gridding function
	* Vectorfind[min,max]
	* bugfix to keyvalue -- blank lines terminating read
	* binary load/save for vector and matrix
	* repadMatrix
	* saveMatrixaspgm
	* Matrixmultiply, Matrixdivide
	* Matrixtranspose -> transposeMatrix
	* version now 0.5.9

2001-12-01  WFB

	* Added VecArray
	* Version now 0.5.0

2001-08-13

	* Matrix transpose, roll (in and out of place)
	* Matrix convolve, deconvolve
	* errorellipse render
	* more to makeimage example

2001-07-15  WFB

	* PDF fix

2001-06-26  WFB

	* VectormeanRMS fix
	* Added intVector type and a few functions
	* Added boxcar averaging for Vector
	* Added Allan Standard Deviation calculation for Vector

2001-04-08  WFB

	* minor configure.in updates
	* minor randon number updates

2001-04-07  WFB

	* Added KeyValue to wfblib -- needs lots of work
	* split output .so into two libs so that fftw does not need to be linked
		with all programs.
	* added wfblib-config executable for generation of CFLAGS and LIBS
	* Version now 0.3.0

2001-04-05  WFB

	* Reference counting for Matrices and subMatrices
	* Many new matrix/vector functions
	* Updated examples

2001-04-02  WFB

	* PDF now is struct _PDF *
	* reorder args to savePDF
	* PDF is now a `subclass' of Vector
	* Matrices are now monolithic
	* optional FFTW support added
	* Image replaces struct image * .  All image funcs now Image funcs
	* Version now 0.2.0

2001-03-31  WFB

	* Reordering some indices on matrices!  watch out.

2001-03-30  Walter Brisken(WFB)  <walterfb@nacho.princeton.edu>

	* Initial release.
