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 <stdio.h>
#include <stdlib.h>
#include <gsl/gsl_linalg.h>
#include <gsl/gsl_matrix.h>

gsl_matrix* get_rates(double k) {

    int nChar = 4;
    gsl_matrix *rates = gsl_matrix_calloc(nChar, nChar);

//TODO: this apparently fails
    rates->data = (double[]) {-1, k/(k+2), 1/(k+2), 1/(k+2),
        k/(k+2), -1, 1/(k+2), 1/(k+2),
        1/(k+2), 1/(k+2), -1, k/(k+2),
        1/(k+2), 1/(k+2), k/(k+2), -1};

    return (rates);

}

int main(void) {

    gsl_matrix *rates;

    rates = get_rates(2.0);

    gsl_matrix_fprintf (stdout, rates, " %f");

        return(0);
}

returns:

-1.000000
 0.000000
 0.000000
 0.000000
 0.000000
 0.000000
 0.000000
 0.000000
 0.000000
 0.000000
 0.000000
 0.000000
 0.000000
 0.000000
 0.000000
 0.000000
link|improve this question

67% accept rate
feedback

1 Answer

up vote 1 down vote accepted
double data[16] = {
    -1, k/(k+2), 1/(k+2), 1/(k+2),
    k/(k+2), -1, 1/(k+2), 1/(k+2),
    1/(k+2), 1/(k+2), -1, k/(k+2),
    1/(k+2), 1/(k+2), k/(k+2), -1};

memcpy(rates->data, data, sizeof data);

References:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.