I have a simple question. How can i create by using ArrayList that data structure in Java ?
vector< complex<float> > *v1;
v1 = new vector< complex<float> >;
I tried something like this:
ArrayList< Complex<float> > v1;
but dont work :/
(I included 'Apache commons math' jar for complex numbers)