as the title suggests... I need to use floating points as array indexes, but the GCC compiler spits out an error complaining.
Basically I have a mathematical function say F(x,t) where the function has variables x and t. The problem I'm having is that I'm trying to increment x and t in type float, so that I can calculate different values for the function at different x, and t. So naturally I would have two for loops:
for (x = x_min; x < x_max; x += dx) {
for (t = t_min; t < t_min; t += dt) {
f[x][t] = 10*x + 10*t; // Over simplified.. but you get the idea
}
}
// And then perform some fourier transform
fft(f[x][t], 256, 1);
So yea, that is why I was wondering if it is possible to get floating points as the array index.