This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package somepackage; | |
import java.util.Random; | |
public class ExponentialAverager { | |
public static void main(String[] args) { | |
int N_ITER = 50; | |
int N_VEC = 5; |