I have the following code, but when I run, I don't even get a number and I'm not sure why. do I have to use a different constructor? I tried but one of the arguments in a different constructor is a random number generator, and won't let me put in any sort of number for it. And please guys, be nice, I know I Don't know very much about distributions or java, I'm just learning.
import org.apache.commons.math3.distribution.TDistribution;
public class Math33 {
public static void main(String[] args){
TDistribution TScore = new TDistribution(1, 5);
System.out.println(TScore);
}
}
I get this as output:
org.apache.commons.math3.distribution.TDistribution@18f55759