This is the mail archive of the gsl-discuss@sources.redhat.com mailing list for the GSL project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: gsl_matrix as a function parameter


This will work:

> gsl_matrix *m = gsl_matrix_alloc(3,3);
> ...
> this_is_my_function (m);
                     ^^^^^

> void this_is_my_function (gsl_matrix * m1)
> {                       ^^^^^^^^^^^^^^^^^^^
> ...
> return();
> }
> 
> 
> -- 
> Kollányi Tibor
> egyetemi tanársegéd
> Miskolci Egyetem Szerszámgépek Tanszéke
> Miskolc-Egyetemváros
> 3515
> tel.:+36 46 / 565 111 / 1915
>             30 / 455 7717
> 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]