Re: [Help-gsl] Compile Problems on solaris 5.8 with Sun-cc

2005-03-17 Thread Brian Gough
. There is a small bug there, which should be fixed if you use the patch below. -- Brian Gough Network Theory Ltd, Commercial support for GSL --- http://www.network-theory.co.uk/gsl/ Index: dwt.c === RCS file: /home/gsl-cvs/gsl/wavelet/dwt.c,v

Re: [Help-gsl] Kronecker Product

2005-04-05 Thread Brian Gough
Gabriel Cardi writes: Does it exist a Kroncker product between 2 matrices in GSL? And for Complex matrices? No. See the Vectors and Matrices chapter in the manual for the complete list of matrix functions. -- Brian Gough ___ Help-gsl

Re: [Help-gsl] question about solving the eigensystem

2005-04-05 Thread Brian Gough
problem. -- regards Brian Gough ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: [Help-gsl] complex matrix generation with GSL???

2005-04-06 Thread Brian Gough
would be really gratefull for an example script. The file eigen/test.c in the GSL distribution creates some complex matrices. It is a test for the hermitian eigensolver routines, but you can use it as an example of how to work with complex matrices. -- best regards Brian Gough Network

Re: [Help-gsl] conjugate transpose of a complex rectangular matrix

2005-04-13 Thread Brian Gough
function for it (an omission in the library). I'd suggest writing your own function in your application (it is only a couple of for loops) If you are using blas functions you may not need it, since the Trans argument can often be used instead. -- Brian Gough Network Theory Ltd, Publishing Free

Re: [Help-gsl] Is there a function in GSL for complex-matrix cholesky decomposition?

2005-05-06 Thread Brian Gough
No. -- Brian Gough Network Theory Ltd, Publishing Free Software Manuals --- http://www.network-theory.co.uk/ ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: [Help-gsl] A Question with using gsl_integration_qags

2005-05-06 Thread Brian Gough
: failed to allocate space for blist ranges Default GSL error handler invoked. Aborted Most likely the program has run out of memory, caused by a memory leak (not freeing memory that is no longer needed). -- Brian Gough Network Theory Ltd, Publishing Free Software Manuals --- http

Re: [Help-gsl] The spline polynomial coefficients are unique (????)

2005-05-20 Thread Brian Gough
not look like a recursive based method too. Any more information on that? (It was odd because every implementation i have seen so far uses a linear system of some sort). For a standard spline, the tridiagonal system has to be solved, I think--it depends globally on the data. -- Brian Gough

Re: [Help-gsl] Compiling GSL with C++

2005-08-05 Thread Brian Gough
exceptions across code compiled as C++ (If one tries, the exception handling system will exit the app, and this is definitely not what's wanted when doing time-consuming computations) GCC has an option for controlling this--see the GCC manual for details. -- Brian Gough Network Theory Ltd

Re: [Help-gsl] Find all the relative maximum/minimum of a function

2005-08-19 Thread Brian Gough
application. -- Brian Gough ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: [Help-gsl] using gsl_stats_skew_m_sd

2005-09-06 Thread Brian Gough
, There is a description of strides in the Vectors and Matrices chapter of the manual (see under stride in the index). -- regards Brian Gough Network Theory Ltd, Publishing Free Software Manuals --- http://www.network-theory.co.uk/ ___ Help-gsl mailing list

Re: [Help-gsl] Help linking with gsl

2005-09-07 Thread Brian Gough
): undefined reference to `__gxx_personality_v0' collect2: ld returned 1 exit status Can someone please tell me what I am doing wrong? See http://www.network-theory.co.uk/docs/gccintro/gccintro_54.html (at the end) -- Brian Gough Network Theory Ltd, Publishing Free Software Manuals --- http

Re: [Help-gsl] ode problem

2005-09-09 Thread Brian Gough
Tomasz Samotyjak, PWSZ writes: f[0] = 1/L1 * ( 400*sin(314*t) - f[1] - R1 * f[0] ); f[] shouldn't depend on itself... perhaps the RHS should use y[] instead. -- Brian Gough Network Theory Ltd, Publishing Free Software Manuals --- http://www.network-theory.co.uk

Re: [Help-gsl] gsl: fwrite_source.c:64: ERROR: fread failed

2005-09-09 Thread Brian Gough
server. fread failed - it couldn't read from a file Beyond that you would have to use a debugger http://www.network-theory.co.uk/docs/gslref/gsl-ref_511.html regards -- Brian Gough Network Theory Ltd, Publishing Free Software Manuals --- http://www.network-theory.co.uk

Re: [Help-gsl] Multidimensional Minimization of a nonlinear function.

2005-09-09 Thread Brian Gough
--this is how most minimisation programs work. -- Brian Gough ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: [Help-gsl] Minimization problem : function not continuous

2005-09-09 Thread Brian Gough
that is the problem rather than discontinuity (I will correct that in the next release). -- Brian Gough Network Theory Ltd, Publishing Free Software Manuals --- http://www.network-theory.co.uk/ ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org

Re: [Help-gsl] make check fail with gsl-1.7

2005-10-13 Thread Brian Gough
Robin Hankin writes: FAIL: haar-centered(2)-2d nonstd other data untouched, n = 64, tda = 69 [12138] FAIL: test what's going on here? Try compiling without optimisation, or with a different version of gcc. -- Brian Gough ___ Help-gsl

Re: [Help-gsl] are multidimensional minimisers threadsafe?

2005-10-24 Thread Brian Gough
Kane Usher writes: Has enyone had problems with using the mulitdimensional minimisers in a threaded environment? I'm using gsl release 1.5 under suse 9.3. You need a separate workspace for each thread. -- Brian Gough Network Theory Ltd, Publishing Free Software Manuals --- http

Re: [Help-gsl] Example not match...

2005-10-24 Thread Brian Gough
? And is it computer architecture dependent? Yes, it's system/architecture dependent (the error is below double precision accuracy). -- Brian Gough ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: [Help-gsl] integration w/ qagp, bessel_Jnu

2005-11-15 Thread Brian Gough
) -- increasing n leads to an underflow error from gsl_sf_bessel_Jnu. Split up the integral (or integrand) to compute the part near x=0 using the asymptotic form of j(x,n) for small x to avoid underflow. Or disable the underflow error if it doesn't affect the final results. -- Brian Gough

Re: [Help-gsl] Problems with #include options in GSL

2005-12-01 Thread Brian Gough
* * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * Copyright (C) 2005 Joseph Rushton Wakeling That looks fine. The main principle is never to remove any existing copyright notices, only to add them. -- Brian Gough

Re: [Help-gsl] Vector and matrix views

2005-12-08 Thread Brian Gough
that this might be the only way in C. -- Brian Gough Network Theory Ltd, Publishing the GSL Manual --- http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: [Help-gsl] Vector and matrix views

2005-12-08 Thread Brian Gough
) is in a field called 'tda'. In fortran it is LDA (standing for leading dimension of A ) with column-major matrices. In C the matrices are row-major so everything is reversed, hence it was named trailing dimension of A = tda. -- Brian Gough Network Theory Ltd, Publishing Free Software Manuals --- http

Re: [Help-gsl] Vector and matrix views

2005-12-08 Thread Brian Gough
-theory.co.uk/docs/gccintro/gccintro_27.html and http://www.network-theory.co.uk/docs/gccintro/gccintro_28.html for details. -- Brian Gough Network Theory Ltd, Publishing Free Software Manuals --- http://www.network-theory.co.uk/ ___ Help-gsl mailing

Re: [Help-gsl] least-squares fitting or minimization with constrained parameters

2005-12-17 Thread Brian Gough
with the constrain that the first of them has the shorter relaxation time. Is this possible, and how would that be implemented? Take a look at http://ool.sourceforge.net/ listed on the main GSL page at gnu.org -- Brian Gough Network Theory Ltd, Publishing the GSL Manual --- http://www.network

Re: [Help-gsl] Non-central chi-squared-distribution

2006-01-09 Thread Brian Gough
://sources.redhat.com/gsl/devel.html Packages so that people can try it. I will add a link to it from the main GSL webpage. -- Brian Gough ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: [Help-gsl] long double gsl_sf_exp()

2006-01-14 Thread Brian Gough
precision only. As mentioned, use expl(). -- Brian Gough Network Theory Ltd, Publishing the GSL Manual --- http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: [Help-gsl] Source file for std deviation calculation?

2006-01-14 Thread Brian Gough
[EMAIL PROTECTED] writes: Can you please tell me which source file in gsl is for std deviation calculation? I can only find .h, but not .c. It's in statistics/variance_source.c. -- Brian Gough Network Theory Ltd, Publishing the GSL Manual --- http://www.network-theory.co.uk/gsl/manual

Re: [Help-gsl] [doc] One line to add in a example

2006-01-14 Thread Brian Gough
( gsl_interp_cspline );*/ Hello, This object is defined in gsl/gsl_interp.h, if it's not defined there's a problem with your installation. -- Brian Gough Network Theory Ltd, Publishing the GSL Manual --- http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl

Re: [Help-gsl] Polynomial root finding

2006-01-15 Thread Brian Gough
program as a test case. Thanks. -- Brian Gough Network Theory Ltd, Publishing the GSL Manual --- http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: [Help-gsl] Lomb periodogram

2006-01-28 Thread Brian Gough
Jerome BENOIT writes: I have just looked for an implementationof the Lomb periodogram in GSL: I am very surprised not to see it, and I wondering why. That's life with free software unfortunately. -- Brian Gough Network Theory Ltd, Publishing the GSL Manual --- http://www.network

Re: [Help-gsl] Maximum size of matrices

2006-01-30 Thread Brian Gough
Analabha Roy writes: Well. Assuming ur datatypes are floats then 128 bits per float (right?), with 16000*3000 floats means abt 1 GIG of RAM If ur using doubles then out of the question in standard boxen. 16000 * 3000 * sizeof(double) (i.e. 8) = 366 MB -- Brian Gough Network

Re: [Help-gsl] GSL citation

2006-03-07 Thread Brian Gough
, the recommended way is to cite the reference manual, e.g. M. Galassi et al, GNU Scientific Library Reference Manual (2nd Ed.), ISBN 0954161734. If you want to give a url, use http://www.gnu.org/software/gsl/;. -- best regards Brian Gough Network Theory Ltd, Publishing the GSL Manual

Re: [Help-gsl] dawsons integral for imaginary arguments

2006-04-13 Thread Brian Gough
anyone know how to obtain this in gsl? Hello, Apart from constant factors it is 1/gsl_sf_hazard(). See http://www.network-theory.co.uk/docs/gslref/gsl-ref_105.html -- Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual

Re: [Help-gsl] Gaussian Ziggurat changes

2006-04-13 Thread Brian Gough
recommend a specialised routine in the application itself. -- Brian Gough (GSL Maintainer) Network Theory Ltd, Commercial support for GSL --- http://www.network-theory.com/gsl/ ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo

Re: [Help-gsl] gsl interpolation problem

2006-04-20 Thread Brian Gough
/docs/gccintro/gccintro_38.html If that doesn't help, try posting a self-contained example to this list. -- Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list Help-gsl

Re: [Help-gsl] gsl_linalg_SV_decomp_mod

2006-04-20 Thread Brian Gough
? Sorry complex SVD is not implemented/supported. -- Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: [Help-gsl] Comments/questions about BFGS algorithm implemented for the GSL

2006-04-24 Thread Brian Gough
be possible to do it as a drop-in extension so that old and new algorithms can be compared side by side at runtime: http://www.gnu.org/software/gsl/#extensions I've ordered a copy of Fletcher's book and will take another look at this when it arrives. -- Brian Gough Network Theory Ltd, Publishing

Re: [Help-gsl] siman: fixed vs variable configurations

2006-04-28 Thread Brian Gough
to are adjusted over and over, and a real copy is never set aside as a best. Yes, that's right - the struct itself is copied, not anything that is pointed to. -- Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual

Re: [Help-gsl] What's the meaning???

2006-04-28 Thread Brian Gough
are: http://www.network-theory.co.uk/docs/gslref/gsl-ref_511.html http://www.network-theory.co.uk/docs/gccintro/gccintro_37.html -- best regards, Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual

Re: [Help-gsl] Generalized SVD

2006-04-28 Thread Brian Gough
Philippe Hupé writes: Is there any function in the gsl library to compute the Generalized Singular Value Decomposition? Sorry, Generalized SVD is not supported/implemented. Only the standard SVD. -- best regards, Brian Gough (GSL Maintainer) Network Theory Ltd, Commercial support

Re: [Help-gsl] Multinomial examples

2006-05-15 Thread Brian Gough
have problems, try sending your code as an example. -- Brian Gough (GSL Maintainer) http://www.gnu.org/software/gsl/ ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: [Help-gsl] gsl_blas_dtrsm

2006-05-30 Thread Brian Gough
. -- Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: [Help-gsl] gsl_blas_dtrsm

2006-05-30 Thread Brian Gough
James Bergstra writes: linalg section for docs and examples. There's work going on right now to add QR factoring to linalg, but I think it's not done yet. I am pretty sure we've had LU, QR and SVD since version 1.0, which was almost five years ago. -- Brian Gough

Re: [Help-gsl] MLE for random distribution parameters

2006-06-08 Thread Brian Gough
/ -- best regards, Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: [Help-gsl] Bug (or not?) in multiroots/fdjacobian.c

2006-06-12 Thread Brian Gough
with a new drop-in routine copying from multiroots/hybrid.c into your own application, no need to modify the source. -- Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list

[Help-gsl] Re: free

2006-06-12 Thread Brian Gough
an error rather than by design, so it's helpful to get a segmentation fault. In general, I've never been convinced that free'ing a null pointer is particularly useful as opposed to just doing if (p) free(p) in the application. -- Brian Gough ___ Help

Re: [Help-gsl] Setting maximum step size in ode solvers

2006-06-13 Thread Brian Gough
of the GSL manual shows how to do something similar. -- Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: [Help-gsl] gsl on GNU/Linux, x86_64

2006-06-20 Thread Brian Gough
mentioning this 64 bit versus 32 bit problem for the benefit of others. Hello, Thanks for the information. What distribution are you using? -- Brian Gough (GSL Maintainer) Network Theory Ltd, Commercial support for GSL --- http://www.network-theory.com/gsl

Re: [Help-gsl] Re: gsl for windows

2006-06-26 Thread Brian Gough
/Darwin. Please let me know if I'm wrong. As I understand it Opensolaris is free software, and the Darwin kernel is also, but Mac OS X itself is not. If you are interested you can look up specific licenses at http://www.gnu.org/licenses/license-list.html -- Brian Gough

Re: [Help-gsl] 3D interpolation in GSL

2006-06-26 Thread Brian Gough
univariate interpolation is supported. There are currently no extensions for higher dimensions. All the extensions are listed at http://www.gnu.org/software/gsl/ -- Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual

Re: [Help-gsl] newbie eigenvalues

2006-06-29 Thread Brian Gough
eigensystems will be in the next release. -- best regards, Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: [Help-gsl] derivative of a data set

2006-06-30 Thread Brian Gough
it by hand using for example u'(x) = ( u(x+h) - u(x) ) / h? Try gsl_spline_eval_deriv, see the manual for details. -- best regards, Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl

Re: [Help-gsl] Error handling problem

2006-07-04 Thread Brian Gough
. See the Error handling chapter of the manual for an example. -- best regards, Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org

Re: [Help-gsl] power spectrum

2006-07-10 Thread Brian Gough
frequencies for the output arrays in the GSL manual. In addition to the DFT power spectrum I believe there is a bayesian fitting approach which is often used. -- Brian Gough (GSL Maintainer) Network Theory Ltd, Commercial support for GSL --- http://www.network-theory.com/gsl

Re: [Help-gsl] Source code for HiCalc / breah of GPL for GSL

2006-07-11 Thread Brian Gough
was not aware of this --- I will start the process for investigating and resolving a license violation. Much appreciated, -- Brian Gough (GSL Maintainer) p.s. messages from nonsubscribers are held and checked manually each day so they would normally appear in 24h

Re: [Help-gsl] QNX4 with GSL

2006-07-17 Thread Brian Gough
makefile. Can you help me ? I would try using bash instead of the system sh. -- Brian Gough (GSL Maintainer) Network Theory Ltd, Commercial support for GSL --- http://www.network-theory.com/gsl/ ___ Help-gsl mailing list Help-gsl@gnu.org http

Re: [Help-gsl] gsl_vector_complex type allocation

2006-07-17 Thread Brian Gough
an /gsl_vector/ object type. Does someone has any idea about how to deal this problem? T = gsl_vector_complex_alloc(n); -- Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list Help

Re: [Help-gsl] Error handling

2006-07-18 Thread Brian Gough
with gsl_ieee_set_mode, but then I get an OS signal which I don't like. We don't handle IEEE overflow, it's left to the user to detect it. You can use the standard C function fetestexcept() to check whether any IEEE exceptions were raised during a function call and then reset them if necessary. -- Brian

Re: [Help-gsl] Error handling

2006-07-19 Thread Brian Gough
At Wed, 19 Jul 2006 13:49:51 +0200, Raphael Mack wrote: Am Dienstag, den 18.07.2006, 17:19 +0100 schrieb Brian Gough: We don't handle IEEE overflow, it's left to the user to detect it. ok, but this does not mean, that the return value of a gsl function will never be GSL_EOVRFLW

Re: [Help-gsl] fitting example

2006-07-20 Thread Brian Gough
. -- best regards, Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: [Help-gsl] Floating point operations in gsl_poly_complex_solve function

2006-07-20 Thread Brian Gough
for these functions can be found in the poly/ directory of the gsl source releases. -- best regards, Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list Help-gsl@gnu.org http

Re: [Help-gsl] Robustness/reliability of GSL

2006-08-08 Thread Brian Gough
to see what bugs have been reported, the bug mailing list archives are at http://lists.gnu.org/archive/html/bug-gsl/ -- best regards, Brian Gough (GSL Maintainer) Network Theory Ltd, Commercial support for GSL --- http://www.network-theory.com/gsl

Re: [Help-gsl] acosh, getting consistent results from GSL and Guile

2006-08-14 Thread Brian Gough
with IEEE arithmetic. It is also used by Common Lisp -- see the GSL Reference manual for details and references. The others are using a different convention (Abramowitz Stegun). As such, all the answers are correct. -- best regards, Brian Gough Network Theory Ltd, Publishing the GSL Manual - http

Re: [Help-gsl] copying the symmetric part of a matrix necessary?

2006-08-16 Thread Brian Gough
to gsl_linalg_cholesky_decomp? How do I do this with GSL short of explicit loops? Although it is not documented, only the lower triangular part of the matrix is used in the Cholesky decomposition, so it is safe to pass that. I will add a note to the manual about it. -- best regards, Brian

Re: [Help-gsl] Complex ODE solvers

2006-08-17 Thread Brian Gough
the existing real API. -- best regards, Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: [Help-gsl] svd inaccuracy

2006-08-23 Thread Brian Gough
() or gsl_linalg_sv_decomp_jacobi()) are orders of magnitude off from the true result (computed and verified in octave). Could you post an example? If you want to submit a bug report please send all the details to [EMAIL PROTECTED] Thanks, -- Brian Gough Network Theory Ltd, Publishing the GSL

Re: [Help-gsl] Eigen value

2006-08-23 Thread Brian Gough
, Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: [Help-gsl] [ODE] GSL and Octave comparison

2006-08-26 Thread Brian Gough
method, try one of the others, e.g. rk4 at least. -- Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: [Help-gsl] [ODE] GSL and Octave comparison

2006-08-30 Thread Brian Gough
to discover. Yes, you're right, there must be some other problem. -- Brian Gough ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: [Help-gsl] GSL N-dimensional matrix question

2006-09-04 Thread Brian Gough
as you would normally in C and create views into them to access matrix and vector slices though (see the Vectors and Matrices chapter of the manual for details). -- best regards, Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual

Re: [Help-gsl] gsl_sf_bessel_Jn_e() algorithm

2006-09-06 Thread Brian Gough
. Daniel and M. K. Weston, ACM Transactions on Mathematical Software 3, (1977), pp. 76-92. If you need more information try [EMAIL PROTECTED] -- best regards, Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual

[Help-gsl] Re: [Bug-gsl] Fwd: installing GSL under Mac OS X

2006-09-08 Thread Brian Gough
to run make clean for the files to be recompiled. -- best regards Brian Gough Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ Janet On 6 Sep 2006, at 22:53, Brian Gough wrote: Janet Vousden wrote: I have been trying to install GSL on a Mac

Re: [Help-gsl] compiling gsl-1.8 with a 64-bit configuration

2006-09-27 Thread Brian Gough
Nassim Jibai wrote: How can I configure the gsl library to compile as a 64-bit library? I tried the following and everytime I execute the make command it crashes. What is the error? -- Brian Gough (GSL Maintainer) Network Theory Ltd, Publishing the GSL Manual - http://www.network

Re: [Help-gsl] circular interpolation

2006-10-13 Thread Brian Gough
is located in the source code? Hello, You can use two interpolations to make a parametric curve (x(t), y(t)) interpolated in t. The spline/interp source is in the interp/ directory. -- Brian Gough (GSL Maintainer) Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk

Re: [Help-gsl] gsl_vector_isPos(gsl_vector*)

2006-10-30 Thread Brian Gough
and matrices. -- Brian Gough (GSL Maintainer) Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: [Help-gsl] Incomplete elliptic integral (Legendre) (quasi-)periodicity issue

2006-10-30 Thread Brian Gough
@gnu.org with a small example program showing the problem, thanks. -- Brian Gough (GSL Maintainer) Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org

Re: [Help-gsl] Can I use an error handler that throws exceptions?

2006-11-13 Thread Brian Gough
not understanding about C/C++ or the GSL? See the note about -fexceptions in the section Usage - Compatibility with C++ of the manual -- by default C libraries are compiled without support for exceptions with GCC but you can enable that when you run ./configure. -- best regards, Brian Gough (GSL

Re: [Help-gsl] Fwd: Bug#398628: GSL has no exception handling

2006-11-16 Thread Brian Gough
size but I have not made any serious use of it myself. -- Brian Gough (GSL Maintainer) Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman

Re: [Help-gsl] Octave-like indexing with the GSL

2006-11-16 Thread Brian Gough
. If we had only non-const objects the extra indirection wouldn't be necessary. -- Brian Gough (GSL Maintainer) Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list Help-gsl@gnu.org

Re: [Help-gsl] Announcement and Question - jacobi

2006-12-04 Thread Brian Gough
operations. Does any one have any hints or references on that that I could use? Which function were you looking at - gsl_sf_legendre_Pl_e? -- Brian Gough ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: Res: [Help-gsl] Announcement and Question - jacobi

2006-12-05 Thread Brian Gough
ell1. -- Brian Gough Network Theory Ltd, Publishing Free Software Manuals --- http://www.network-theory.co.uk/ Index: legendre_poly.c === RCS file: /home/gsl-cvs/gsl/specfunc/legendre_poly.c,v retrieving revision 1.37 diff -u

Re: [Help-gsl] complexity of gsl_eigen_symmv

2006-12-05 Thread Brian Gough
, Matrix Computations (3rd Ed, 1996), ISBN 0-8018-5414-8. There is a detailed discussion of it there. -- best regards, Brian Gough (GSL Maintainer) Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help

Re: [Help-gsl] help for linking test program

2006-12-08 Thread Brian Gough
-- for example, permission denied, root access is usually needed to install to that location. -- Brian Gough (GSL Maintainer) Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list Help-gsl@gnu.org

Re: [Help-gsl] Daubechies and images and CBIR

2006-12-18 Thread Brian Gough
other documentation? I already opened the images and I have a matrix containing colors of the pixels. I didn't see any replies on the list, but if anyone does have an example of that I'd be glad to add it to the manual. -- Brian Gough (GSL Maintainer

Re: [Help-gsl] java wrappers

2006-12-20 Thread Brian Gough
plans for making new releases on sourceforge. -- Brian Gough Network Theory Ltd, Publishing Free Software Manuals --- http://www.network-theory.co.uk/ ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help-gsl

Re: [Help-gsl] FFTs and views

2006-12-20 Thread Brian Gough
, thisrowz.vector.stride, thisrowz.vector.size) gsl_complex_packed_array is equivalent to double* -- Brian Gough (GSL Maintainer) Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual

[Help-gsl] Forward: FSF year-end fund-raiser for our 2007 campaigns

2006-12-20 Thread Brian Gough
and DRM. Thanks for your time. Have a good Christmas and New Year. -- Brian Gough (GSL Maintainer) -- From: Peter Brown [EMAIL PROTECTED] Subject: FSF year-end fund-raiser for our 2007 campaigns We are announcing today the beginning

Re: [Help-gsl] gsl_sum (potential division by zero?)

2007-01-03 Thread Brian Gough
estimates to reduce the risk of division by zero? Generally in GSL we just implement what is published in the literature, so far I have not seen any newer algorithms published. -- best regards, Brian Gough (GSL Maintainer) Network Theory Ltd, Publishing the GSL Manual - http://www.network

Re: [Help-gsl] handling memory for ODE micro steps

2007-01-09 Thread Brian Gough
which handles fast growing objects of unknown size, but it may be more complicated than you need. -- Brian Gough Network Theory Ltd, Publishing Free Software Manuals --- http://www.network-theory.co.uk/ ___ Help-gsl mailing list Help-gsl@gnu.org http

Re: [Help-gsl] Re: Seg faults and altered parameters using vector views

2007-01-11 Thread Brian Gough
, and GCC bounds-checking for security (compiling daemons, etc). I don't know of any SPARC equivaluent to valgrind though. -- Brian Gough Network Theory Ltd, Publishing Free Software Manuals --- http://www.network-theory.co.uk/ ___ Help-gsl mailing

Re: [Help-gsl] gsl_sf_beta efficiency question

2007-01-22 Thread Brian Gough
more efficient than using directly the Beta function (gsl_sf_beta). Hello, The source is in specfunc/beta.c if you want to see the implementation. -- Brian Gough (GSL Maintainer) Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual

Re: [Help-gsl] simplex algorithm for multimin: gsl_multimin_fminimizer_size returns nan

2007-02-09 Thread Brian Gough
this? Could you post a small example program which reproduces the problem to bug-gsl@gnu.org, thanks. -- Brian Gough Network Theory Ltd, Publishing Free Software Manuals --- http://www.network-theory.co.uk/ ___ Help-gsl mailing list Help-gsl@gnu.org http

Re: [Help-gsl] Incomplete elliptic integral (Legendre) (quasi-)periodicity issue

2007-02-09 Thread Brian Gough
for the next release (http://sources.redhat.com/gsl/devel.html) - the values should be correct for all values of phi now. -- Brian Gough (GSL Maintainer) Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl

Re: [Help-gsl] Nonlinear least-square-fitting parameter domain

2007-02-21 Thread Brian Gough
parameter value. There is no constrained optimisation in GSL, take a look at the OOL extension though: http://www.gnu.org/software/gsl/#extensions -- Brian Gough Network Theory Ltd, Publishing Free Software Manuals --- http://www.network-theory.co.uk

Re: [Help-gsl] Floating point exception in gsl

2007-03-01 Thread Brian Gough
in Alpha EV7 using cc (HP Tru64 C compiler): MPI process 21963 died from signal 8 (Floating point exception) Does anyone know how to solve it? Thanks. Additional options are needed compiling on Alpha, see the platform specific compilation notes in the INSTALL file. -- Brian Gough (GSL Maintainer

Re: [Help-gsl] Floating point exception in gsl

2007-03-09 Thread Brian Gough
: GSL_IEEE_MODE=mask-all MPI process 391678 died from signal 8 (Floating point exception) Do you know why? Thanks. On Alpha the libray has to be compiled with -mieee (with GCC). For other compilers that option is probably called something else. -- Brian Gough (GSL Maintainer) Network Theory

Re: [Help-gsl] How to solve a linear equation system with left (lower) triangle matrix in gsl?

2007-03-13 Thread Brian Gough
or lower triangular matrices, e.g. gsl_vector_memcpy(x, b); /* x - b */ gsl_blas_dtrsv (CblasLower, CblasNoTrans, CblasUnit, L, x;) See the documentation for more details. -- best regards, Brian Gough (GSL Maintainer) Network Theory Ltd, Publishing the GSL Manual - http

[Help-gsl] Re: [Bug-gsl] gsl: interp.c:134: ERROR: interpolation error

2007-03-13 Thread Brian Gough
. The interpolation routines assume x-values are increasing, but your data has decreasing x. -- best regards, Brian Gough (GSL Maintainer) Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing

Re: [Help-gsl] Question: gsl in C++ ??

2007-03-13 Thread Brian Gough
and weights, so not everything can be templatised. -- Brian Gough (GSL Maintainer) Network Theory Ltd, Publishing the GSL Manual - http://www.network-theory.co.uk/gsl/manual/ ___ Help-gsl mailing list Help-gsl@gnu.org http://lists.gnu.org/mailman/listinfo/help

  1   2   3   4   >