Re: [pure-lang-users] C macros
Status: Beta
Brought to you by:
agraef
From: Eddie R. <er...@bm...> - 2008-08-26 14:19:57
|
On Tue, 2008-08-26 at 16:12 +0200, Albert Graef wrote: > Eddie Rucker wrote: > > On Mon, 2008-08-25 at 17:44 -0500, Eddie Rucker wrote: > > > >> The only way to get matrices with complex entries or int entries is to > >> go through the BLAS interface as I see it. Weird that I have to > >> implement both the gsl_matrix_ stuff and BLAS but some of the later > >> stuff uses the gsl_matrix_* routines. > > > > Wrong! I can use gsl_matrix_complex_ routines. > > Does GSL have integer matrices, too? > Ja, all the types we can have are double, float, long double, int, unsigned int, long, unsigned long, short, unsigned short, char, unsigned char, complex double, complex float, complex long double. The only thing missing from Pure types is rationals. e.r. |