is it possible to expand 2d array
in
Programming Questions
•
10 months ago
for example , I have
double[][] A = new double[3][3];
and i want to expand it like, let say
double[4][3]..
is it possible??
I tried expand(), but it only works for 1d array..any help,ideas are kindly appreciated..
double[][] A = new double[3][3];
and i want to expand it like, let say
double[4][3]..
is it possible??
I tried expand(), but it only works for 1d array..any help,ideas are kindly appreciated..
1