The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers.
0
votes
0answers
10 views
gsl_rng_default Unresolved External Error
Trying to use GSL to generated beta-distributed random deviates in C on windows. Program will not link, giving the well known "error LNK2001: unresolved external symbol _gsl_rng_default" error ...
0
votes
1answer
19 views
ld: library not found for -lgsl
I'm working in OSX and I'm attempting to run a make file and when I try I get the following:
ld: library not found for -lgsl
clang: error: linker command failed with exit code 1 (use -v to see ...
2
votes
1answer
41 views
Internal compiler error with nested functions in OpenMP parallel regions
I tried to call the Monte Carlo integration subroutine of GSL library to do some numerical calculation. Because my for loop is rather simple, meaning the results of different runs are independent, I ...
-1
votes
2answers
49 views
Cast from void * produces Segmentation Violation error
I'm using the Gnu Scientific Library to implement a module in my program that computes integrals numerically.
The functions are based on the example that can be found on the GSL website in Numerical ...
1
vote
1answer
52 views
C equivalent of matlab angle function
I am dying here. So I have a complex number(-4.9991 + 15.2631i). In matlab if I do
angle(-4.9991 + 15.2631i) = 1.8873
I thought that angle basically calculated like
atan(15.2631/-4.9991) = ...
0
votes
0answers
20 views
undefined reference to `_imp__gsl_version'
I have just finished compiling and installing gtk+ (2.24.10) gtkmm(2.17.2) gtkglext(1.2.0) and gsl(1.8) (and all the required dependencies) in windows using MinGW which are dependencies for the ...
0
votes
1answer
22 views
How to install PyGSL? (Windows 7, 64 bit, Python 2.7, GSL 1.15)
I'm trying to install PyGSL on my computer (64 bit Windows 7), with Python 2.7 and GSL 1.15 installed. I'm pretty much stuck and I would love for some extra help. GSL installed fine, but its the ...
0
votes
1answer
27 views
gsl complex matrix * complex vector
Can somebody help me figure out how to do this operation. I'm looking at the documentation, but its been so long since I've had to do any linear algebra type stuff I'm a little lost.
I have a 14x14 ...
0
votes
2answers
42 views
Can C++ allocate page-locked memory?
Basically, I have a gsl matrix which needs to be allocated into the page-locked memory. gsl_matrix_alloc doesn't specify this. It seems I have to redirect the pointers in my gsl_matrix->data. However, ...
0
votes
0answers
30 views
Compiling Mathematica 8 mathlink.h using gcc
I'm trying to get my program to talk to Mathematica using MathLink. I'm using cygwin, and mathematica 8.0.
I can compile the equivalent of the "AddTwo" program and use it successfully by using the ...
1
vote
0answers
29 views
cannot find -lgsl and -lgslcblas
I am trying to compile a software called MRtrix in windows. It uses a python build script, (I have uploaded it here: http://pastebin.com/XnufSz53)
when I run this script I get the error pasted ...
0
votes
0answers
23 views
Using scipy.weave and GSL ODE
After a previous question I am trying to solve some ODEs using GSL. The complicating factor is I want it written in python and so am trying to get scipy.weave to help.
Using the standard GSL ODE ...
0
votes
2answers
64 views
Converting GSL ODE solver to Python
I solve a set of couples ODEs which I solve using the GSL ODE solver similar to this example. Currently this is automates by writing a file in python e.g
text = """
#include <stdio.h>
#include ...
2
votes
2answers
96 views
C++ strange behaviour with fuction call by value
I have an object which is a class interface to the matrix struct found in the GNU Scientific Library
typedef double real_t;
typedef unsigned short index_t;
class matrix
{
gsl_matrix* m;
...
0
votes
3answers
85 views
Need help installing the GNU Scientific Library for Lisp(GSLL)
I use Emacs\Slime\SBCL\QuickLisp\Cygwin(new to Cywgin I know nothing really about it) I, per this GNU link http://common-lisp.net/project/gsll/, tried to follow these instructions under the download ...
0
votes
0answers
30 views
Weighting function in boost::numeric::quadrature or gsl quadrature
I am trying to take the integral of a gamma PDF (pdf(x, a, b)) and apply a weighting function (w(x)). I have been trying to find an example for either boost or gsl to do this in c++, but have come up ...
0
votes
2answers
75 views
Better memory management for GSL gsl_vector
When I write linear algebra programs in C++, I use the Armadillo library. It is based on templates, which provide me a way to define vectors of any length that don't necessarily require additional ...
0
votes
1answer
156 views
CythonGSL/ Using GSL on Windows via Cython
Machine Configuration:
My config is windows 7 x64, with python 2.7 and cython 0.18 (all 64 bit ) installed. I also have MS C++ 2008 Visual Studio installed.
I have the GSL binaries and have Path ...
0
votes
0answers
155 views
Gcc error only when using makefile (CreateProcess: No such file or directory)
I am having trouble compiling using make in windows 7 with gcc and the gsl library. It occurs only when using make (when I type the compilation commands manually into the cmd line, it compiles ...
1
vote
2answers
180 views
Java JNI with C function using gsl.
I am trying to use JNI in order to call a function defined in c. It is really weird because when I run my java program, sometimes I get one mistake and other times I get a different one. Here they ...
0
votes
2answers
74 views
Matlab script moved to C but with different output for ode45
I implemented an equivalent version of a Matlab script into C. In order to run ode45 I picked up GNU scientific library. But ode45 produces different outputs for each version. I've work for a while ...
1
vote
0answers
84 views
How to reduce No of permutations in C
I am using GSL function to generate permutations, it works fine and result in 4! permutations.
gsl_permutation * p = gsl_permutation_calloc (4);
gsl_permutation_init (p);
do
{
...
1
vote
1answer
58 views
Compiling GSL odeiv2 with g++
I'm attempting to compile the example code relating to the ODE solver, gsl/gsl_odeiv2, using g++. The code below is from their website :
...
0
votes
1answer
122 views
How can I use GSL with C++11 and the new STL?
I am setting up a new C++ project (in Xcode 4.6) and I would very much like to use the features of the new C++11 standard (lambda expressions, auto, etc.). I am trying to (statically) link the Gnu ...
1
vote
1answer
69 views
Use local library if system library is missing
I am using Autoconf and Automake tools, in ordrer to develop/distribute my application.
Everything is working fine right now.
My applications depends on GSL (GNU Scientific Library), so in my ...
0
votes
1answer
48 views
Pointer type compile-time error in GSL ODE solution
I'm working with the code on the GSL examples page to try to solve a system of four differential equations. I've been wrestling with passing five parameters to the ODE system, and have arrived at one ...
0
votes
1answer
61 views
Python build script error
I am trying to compile a software using a python build script but I encounter the following error.
python build
[CC] cmd\threshold.o
[CC] src\dwi/SH.o[CC] src\mrview/sidebar/orientation_plot.o
...
0
votes
1answer
45 views
Ruby/GSL online documentation for wrong version?
After successfuly installing Ruby/GSL library on my Debian (via *deb), with Ruby 1.9.3, I am having troubles running most of the GSL methods. Specifically, this webpage shows several code samples, but ...
1
vote
1answer
110 views
C - (mathematical) integration with GSL causes segmentation fault
So I'm trying to do an integration for an option model in C. The function gets called from Matlab and is compiled as a mex file.
the function hestonIntegrand1 does return a value when called outside ...
0
votes
0answers
52 views
std::bad_alloc and GSL ODE solver
I am trying to solve a (large) system of ODEs with GSL solvers. When I use driver method I get an error message of could not allocate space for gsl_interp_accel, when I define control, error and ...
1
vote
2answers
77 views
Condition operators (< , >) do not work in gsl interpolation function
I have a question that seems very unusual to me. I have a condition statement that doesn't work as it should. Particularly, I have
double maxx = *max_element(v1.begin(), v1.end());
if(x > maxx){
...
1
vote
2answers
38 views
gsl_histogram: Value being equal to an edge between two bins, to which bin will the value be assigned?
To which bin of a gsl_histogram is a value assigned that falls exactly on the edge between two bins?
E.g. when I call gsl_histogram_increment( h, x), with x being exactly 0 and the bin edges being ...
2
votes
1answer
64 views
ODE with complex entires
I am trying to solve a system of ODEs with complex entries. From the GSL documentation it follows that it accepts only real entries. Is there any way to pass complex ones (anything more ...
0
votes
4answers
240 views
error C2102: '&' requires l-value
The code line: gsl_blas_daxpy(-a,&gsl_matrix_column(D, q).vector,y);
cause the error
error C2102: '&' requires l-value
, now the problem is that I have no control of the GSL functions ...
0
votes
1answer
86 views
Brian Gladman's - Building the GNU Scientific Library (GSL) with Microsoft Visual Sudio 2010
GSL 1.15 building with Visual Studio 2010
I don't understand why it is so hard to compile a C code that uses GSL library and CBLAS
I tried to follow those steps
enter link description here
enter ...
0
votes
0answers
44 views
C program In Cygwin environment on Win 7 - possibly GSL related
After much struggle I was able to install GSL in the directory /opt using cygwin. GSL is needed for a program in C that I am trying to work with.
When I run make on the makefile of the C program I ...
0
votes
1answer
47 views
Template function return issue
I am a fresh man of C++, I would like to make a template function. I have met an issue with the return value of templates. the code is like this
#include <iostream>
#include <cmath>
...
0
votes
0answers
35 views
Program Using Cygwin GSL Hangs Upon Completion
I am attempting to use Cygwin's version of GSL with Windows Visual C (vanilla C, not C++, 2008).
The compiled executable is run directly from a DOS window. The problem is that after the program ...
1
vote
0answers
60 views
Increase dimension of gsl minimizer
I've to develop an optimizer to calculate the 14 parameters of a hidden markov chain (I know its much but possible :)). I've already done the same optimizer using IMSL(which I had during an intership) ...
0
votes
1answer
158 views
install ruby-gsl in Ubuntu Precise
I have Ubuntu Precise and can't find in the software repo any lapack or blas. When I run
sudo gem install gsl
I get an error output. I have gsl 1.15. The output is as follows
Building native ...
0
votes
2answers
247 views
gnu scientific library (cblas) Symbol lookup error
I have problems running the cblas parts of the gsl (gnu scientific library).
The example below (from the gsl manual) compiles a links perfectly but, gives an error when running. This is under Ubuntu ...
0
votes
0answers
32 views
Installing an older version of gsl on fedora 17
I have fedora 17 and currently have
gsl-1.15-4.fc17.x86_64
installed. I would like to replace it with
gsl-1.14x, some slightly older version. How would I go about this?
1
vote
0answers
90 views
trouble with gem install gsl in fedora 17
I have Fedora 17 and I have the following installed:
ruby-1.9.3.327-19.fc17.x86_64
rubygems-1.8.24-1.fc17.noarch
gsl-1.15-4.fc17.x86_64
gsl-devel-1.15-4.fc17.x86_64
I run
$ ...
0
votes
1answer
207 views
installing GSL on Windows XP 32bit for use with codeblocks
I am trying to install Gnu Scientific Library (GSL) on Windows XP, but this is very difficult for me. I found this site
http://gnuwin32.sourceforge.net/packages/gsl.htm
from which I downloaded ...
0
votes
1answer
64 views
Fitting a peicewise “broken stick” model with GSL
I am attempting to fit a function to some sampled data I have. I understand and have seen numerous examples of linear fitting within GSL, however the function I need to fit has the form
x_i = c_0 + ...
1
vote
2answers
72 views
R BayesVarSel on Ubuntu installation
I'm trying to install the BayesVarSel package on a ubuntu 12 box on AWS EC2. It works fine on my windows 7 machine (R 2.15.1).
I've attached a screenshot of the error message. It appears to be an ...
1
vote
1answer
237 views
covariance matrix gsl
I am trying to calculate the Mahalanobis distance between two vectors a and b. Eventually, I will be using this as a distance measure in statistical algorithms. I am using gsl to implement them. The ...
2
votes
3answers
95 views
Making a subset from a large C library
I am using some functions of the GSL library in my C application. This library is so large and has a lot of functions and facilities which I want only a few of them. My problem is that I want to use ...
0
votes
1answer
73 views
compile with gsl with an existing makefile
i have a makefile for some code library i'm using and now i've added to that code some code that uses gsl. i'm not so sure how and what to add to the makefile (which i wat to keep since it's invoking ...
1
vote
2answers
135 views
Efficient way to compute Kronecker product of matrices with GSL
The bottleneck of my algorithm is my function Kronecker Product called KPro:
gsl_matrix *KPro(gsl_matrix *a, gsl_matrix *b) {
int i, j, k, l;
int m, p, n, q;
m = a->size1;
p = ...


