I have a Int[][] jagged array, and I want to convert it to Double[][] jagged array. Of course I don't want to change the value inside the array for example:
  int[2][1] = 10
  and when it converted to double,
  int[2][1] = 10
  So i have value[][] which is type is integer. and i want to convert it to double.