http://www.gnu.org/software/gsl/
15
votes
1answer
1k views
Haskell linear algebra?
I am starting to test Haskell for linear algebra. Does anyone have any recommendations for the best package for this purpose? Any other good resources for doing basic matrix manipulation with ...
8
votes
2answers
330 views
What is the BigO of linear regression?
How large a system is it reasonable to attempt to do a linear regression on?
Specifically: I have a system with ~300K sample points and ~1200 linear terms. Is this computationally feasible?
7
votes
7answers
509 views
Using random numbers with GPUs
I'm investigating using nvidia GPUs for Monte-Carlo simulations. However, I would like to use the gsl random number generators and also a parallel random number generator such as SPRNG. Does anyone ...
6
votes
6answers
702 views
In C++, how to compute the mean of a vector of integers using a vector view and gsl_stats_mean?
my program manipulates STL vectors of integers but, from time to time, I need to calculate a few statistics on them. Therefore I use the GSL functions. To avoid copying the STL vector into a GSL ...
4
votes
1answer
276 views
Problems installing gsl gem
I can succesfully install the gsl library in my home directory, but when I try to install the gsl gem I get a big list of errors that I do not understand. I am wondering if someone could give me some ...
4
votes
2answers
668 views
Random numbers from binomial distribution
I need to generate quickly lots of random numbers from binomial distributions for dramatically different trial sizes (most, however, will be small). I was hoping not to have to code an algorithm by ...
3
votes
2answers
209 views
How to implement a left matrix division on C++ using gsl
I am trying to port a MATLAB program to C++.
And I want to implement a left matrix division between a matrix A and a column vector B.
A is an m-by-n matrix with m is not equal to n and B is a column ...
3
votes
1answer
236 views
removing memory leaks in c++ and GNU scientific library code
double a[] = { 0.11, 0.12, 0.13,
0.21, 0.22, 0.23 };
double b[] = { 1011, 1012,
1021, 1022,
1031, 1032 };
double c[] = { 0.00, 0.00,
...
3
votes
4answers
532 views
Function pointers working as closures in C++
Is there a way in C++ to effectively create a closure which will be a function pointer? I am using the Gnu Scientific Library and I have to create a gsl_function. This function needs to effectively ...
3
votes
1answer
394 views
Linking GSL (or other library) statically into a shared library
Note: Despite the mentioning of Python in the following there is a good chance for my problem not to be Python related at all. If I am not mistaken the “module” I mention is equivalent to a C ...
3
votes
1answer
511 views
What is the most efficient way to solve system of equations containing the digamma function?
What is the most efficient way to solve system of equations involving the digamma function?
I have a vector v and I want to solve for a vector w such that for all i:
digamma(sum(w)) - digamma(w_i) = ...
3
votes
1answer
2k views
Matrix multiplication in GSL-GNU
Kindly tell me the function of matrix multiplication in GSL library. I have searched a lot but I am not be able to fine it. If any one know about that function kindly answer. Thanks in advance.
2
votes
4answers
172 views
Run a C executable in another distro
I have a C program that I'm developing using Ubuntu 11.10 (Linux version 3.0.0-12-generic-pae kernel). I need to run that program in a cluster that has Debian 3.1 (Linux version 2.4.24-om2) installed, ...
2
votes
2answers
66 views
What ODE solver uses calculations in a stepper function for interpolation?
I average over a multiple solutions of ODEs that have different initial conditions, so it's important for all of the solutions to have values at the same times; for example, at an increment of 0.01.
...
2
votes
1answer
142 views
How does this function work?
I've been dissecting gsl libraries abd came across the header file gsl_block_double.h and multiple source files with its functions definitions. One of the many is the block_source.c. i dont know C so ...
2
votes
1answer
77 views
Permission denied? when executing the example.o (gsl statistics sample)
I downloaded, compiled, and installed the GNU Scientific Library (gsl) on my mac, which locates /usr/local/include/gsl as default.
To test it, I have tried to compile and execute the example C ...
2
votes
2answers
171 views
Performing STL operations on Boost::uBLAS vectors
How can I map a function to every element of a vector in uBLAS (like Map[] in Mathematica)?
For example; I want to take the sin() of all the elements of a uBLAS vector. Is there an optimized way in ...
2
votes
1answer
91 views
How bad rand from stdlib.h is?
I'm making a monte carlo simulation in C++ and I was using Boost for random numbers. I used GSL a bit too. But it turns out random number generation is one of my biggest runtime inefficiencies, so I ...
2
votes
1answer
327 views
EEG Wavelet Analysis
I want to do a time-frequency analysis of an EEG signal. I found the GSL wavelet function for computing wavelet coefficients. How can I extract actual frequency bands (e.g. 8 - 12 Hz) from that ...
2
votes
1answer
314 views
Getting p-value for linear regression in C gsl_fit_linear() function from GSL library
I'm trying to reporduce some code from R in C, so I'm trying to fit a linear regression using the gsl_fit_linear() funtion.
In R I'd use the lm() function, which returns a p-value for the fit using ...
2
votes
2answers
2k views
GSL/BLAS: Multiply a matrix with an inverse matrix
I'm using the GNU GSL to do some matrix calculations. I'm trying to multiply a matrix B with the inverse of a matrix A.
Now I've noticed that the BLAS-part of GSL has a function to do this, but only ...
2
votes
0answers
361 views
Integrating GSL onto iPhone Xcode
I have been trying to integrate GSL (Gnu Scientific Library) into an iPhone project using Xcode.
The challenge is GSL has all the modules in different folders, yet when their header files are ...
1
vote
2answers
29 views
ImportError from Cython when linking an external C library
I am trying to replicate the work of Flavian Coelho, linked here. He used Cython and the Gnu Scientific Library (GSL) to get a huge speed-up over Python in generating random numbers. When I import my ...
1
vote
1answer
72 views
How to use the GSL implementation of the Pearson correlation coefficient?
I have two vectors of floats, x and y, and I want to compute the Pearson correlation coefficients. As I have to do it on a lot of data (for instance 10 millions different vectors x and 20 thousand ...
1
vote
2answers
51 views
histogram function in ansi C program: GSL and/or others?
If I just want to use the gsl_histogram.h library from Gnu Scientific Library (GSL), can I copy it from an existing machine (Mac OS Snow Leopard) that has GSL installed to a different machine (Linux ...
1
vote
0answers
106 views
Segmentation faults in GSL's random number generator while using OpenMP's threading
In my Monte Carlo simulation I run the whole thing multiple times to be able to average the results and reach higher precision. Since the realizations share nearly no variables or anything, it should ...
1
vote
1answer
74 views
Adding Environment Variable in Windows 7
I am trying to use CMake and I need to add an environment variable GSL_ROOT_DIR in windows 7, so that %GSL_ROOT_DIR%\include contains the GSL header files and %GSL_ROOT_DIR%\lib contains the GSL ...
1
vote
1answer
105 views
What does this statement mean in C? [closed]
I am trying to understand the piece of code written in C and not sure I understand it fully.
Here is the function written in C:
int
gsl_multimin_diff (const gsl_multimin_function * f,
...
1
vote
1answer
164 views
GSL blas routines slow in Visual Studio
I just installed GSL and BLAS on Visual Studio 2010 successfully using this guide:
However the matrix multiplications using cblas are ridicously slow. A friend on Linux had the same problem. Instead ...
1
vote
1answer
244 views
Xcode 4 warning: “could not find object file”
I am writing a C++ program in Xcode to carry out a calculation, linking to the GSL 1.15 and Eigen 3 libraries. My code builds successfully and gives me the correct values in Target Output mode. ...
1
vote
1answer
111 views
passing double array by void type for GSL in C
I'm trying to use the GSL library to solve ODE and I'm having some difficulty using the void pointer
I need to send a parameter over that supposed to contain an array of an array:
double k1[2][4];
...
1
vote
1answer
140 views
GSL gsl_blas_sgemm matrix multiply highly inaccurate for n>140
Just to test a multiplied a 150x150 matrix of all ones by itself using the gsl_blas_sgemm function. I'm getting errors of up to 38. Why is it so inaccurate?
1
vote
0answers
63 views
Linking GSL when using Fink
I have been using GSL at my office and tried to install it on my MacBook at home using Fink, and it seemed that GSL installed properly. I am having some issues when I try to use the library though. ...
1
vote
1answer
166 views
GSL and correlation
I'm using the GSL library 1.14 and the ruby wrapper (gsl) for some math calculation. One thing that I need is the Pearson correlation. But I have a problem when 0 in my array.
For example I have this ...
1
vote
1answer
167 views
converting GSL grammar to GRXML format
Are there any tools which would convert existing GSL grammar files to GRXML grammar files ?
I expected such a tool to be alread there but couldn't find it on searching, am I missing something ?
Thank ...
1
vote
0answers
176 views
Multidimensional minimization with the Gnu Scientific Library
So I have a problem with the multidimensional minimization procedures in the GSL (the one I'm trying to use is gsl_multimin_fdfminimizer_vector_bfgs2, but the others produce the same problem). I have ...
1
vote
1answer
197 views
g++ linking and swig
I have a cpp file with functions that I'm using in python with SWIG. I use the following commands to compile the source and create the file to use with python.
swig -c++ -python mini.i
g++ -O2 -c ...
1
vote
1answer
176 views
deallocating gsl vectors in structs
Can you explain what's going on with my code here? I'm not sure if I'm using the destructor correctly or not in the struct.
With the destructor in there I get:
function1: 23
function2: 8.86183e-317
* ...
1
vote
0answers
490 views
GSL for Visual C++ 2010
I'm trying to use the GSL 1.14 for VC2010 considering the build project proposed by Brian Glandman's (http://gladman.plushost.co.uk/oldsite/computing/gnu_scientific_library.php).
After building ...
1
vote
3answers
284 views
Projection of polygon onto plane using GSL in C/C++
The general problem is projecting a polygon onto a plane is widely solved, but I was wondering if anybody could make some suggestions for my particular case.
I have a planar polygon P in 3-space and ...
1
vote
0answers
166 views
Errors compiling pygsl on Mac OS X
I am having trouble compiling Pygsl on Mac OS X, using GCC 4.2. I ran the following:
sudo python setup.py install
And got this error:
In file included from testing/src/sf/sfmodule_testing.c:49:
...
1
vote
1answer
163 views
Problem in Building mplsh-run in lshkit
been trying out this for quite some time but
I'm still unable to built mplsh-run from lshkit
Not sure if this would help to explain my situation during the
building process
/tmp/cc17kth4.o: In ...
1
vote
5answers
551 views
Segmentation fault
This is probably a silly question, but I can't see what I am doing wrong here. I have the class:
#include <sys/time.h>
#include <gsl/gsl_cdf.h>
#include <gsl/gsl_randist.h>
#include ...
0
votes
0answers
3 views
gmp float lower limit at given precision
I'm writing a C library with GMP and its arbitrary precision floats. I need to chop off "small numbers", but I don't know how to determine what is small.
Say I set the precision of GMP floats (mpf_t) ...
0
votes
0answers
13 views
converting gsl linear algebra for use in scalapack or other parallel matrix library
Hi I have a code deeply embedded with gsl-gnu matrix arithmetic, the main computation of this code is with a very large matrix inversion that takes a very long time in serial and with gsl and blas ...
0
votes
1answer
57 views
DFT with Frequency Range
We need to change/reimplement standard DFT implementation in GSL, which is
int
FUNCTION(gsl_dft_complex,transform) (const BASE data[],
const size_t stride, ...
0
votes
2answers
41 views
setting a vector to a matrix algorithm help in C++
I have a array X that has M*N elements, I'm trying to create a matrix A of size M x N with this same data. I'm using gsl for the matrix and X is declared as an array. I'm having trouble and I keep ...
0
votes
0answers
132 views
Random number generators to work on x86_64
This question is about using the GNU Scientific Library's random number generators in Cython (under Python 3.2) on a Mac OSX 10.7 (Lion) system.
Since Lion is a 64-bit OS, the installer gave me a ...
0
votes
1answer
99 views
I usually get this error when I try to install gems
I'm new to Ruby and Gems, so I might be missing something that's obvious:
ERROR: Error installing matlab-ruby:
ERROR: Failed to build gem native extension.
...
0
votes
1answer
41 views
Using -> for gsl_matrix structure pointer
I want to have a shortcut for assigning values to gsl_matrix data pointer, instead of writing gsl_matrix_set 16 times, but I can't get it to work. A small self-contained sample:
#include ...