Forum: C Nov 2nd, 2007 |
| Replies: 4 Views: 1,386 returning three dimensional array Hello
I am having no problem while returning 1 dimensinal array
But am having trouble with 3 dimenional array
No problem with this code
float Mat[][][];
float Mat[];
float *funct1(void)
{ |
Forum: C++ Oct 21st, 2007 |
| Replies: 1 Views: 2,065 reading data from file to vector I am trying to read matrix data from file into a float vector
the file has data like
X = {1.0, 2.0, 3.0...........}
Y = {3.4, 3.1, 3.4...........}
I can read into vector strings. But I want to... |
Forum: C Oct 19th, 2007 |
| Replies: 1 Views: 1,073 Inverse of a matrix Does knows any library that produces the inverse of a given matrix ?
Or is there any C example available ? |
Forum: C Oct 18th, 2007 |
| Replies: 4 Views: 1,331 |
Forum: C Oct 18th, 2007 |
| Replies: 4 Views: 1,331 |
Forum: C Oct 18th, 2007 |
| Replies: 4 Views: 1,331 reading in from vector to a two dimensional array this is a small example from the gsl example online
I need to get the value from the "&evec_i.vector " into a 4x4 dimensional array
such that
abc[4][4]= vector elements
how can I do this ? those... |