LA.java
.. .. @@ -623,6 +623,7 @@ 623 623 private static int indxr[] = new int[4]; 624 624 private static int indxc[] = new int[4]; 625 625 626 + static double[][] Identity = new double[4][4];626 627 627 628 static int SIZE = 0; // 65536*64; 628 629 .. .. @@ -638,6 +639,8 @@ 638 639 costable[i] = Math.cos(PI2 * i/SIZE); 639 640 sintable[i] = Math.sin(PI2 * i*i/SIZE/SIZE); 640 641 } 642 +643 + LA.matIdentity(Identity);641 644 } 642 645 643 646 static double cos(double x0)