Here the following code
public static double variance (float[] ListTrouverVariance)
MatCovariance.set(i, j, variance("x"+i));
My "x1" is an array of float and I would like to use as a parameter of variance but I have also another array called "x2" , so I would like to do it with a loop.
I can't do it the way i'm trying because the function is expecting an array and not a string, so i'm looking for a kind of cast.