Skip to main content



      Home
Home » Eclipse Projects » Eclipse Platform » drasys.or.prob.NormalDistribution
drasys.or.prob.NormalDistribution [message #326388] Tue, 18 March 2008 12:38 Go to next message
Eclipse UserFriend
Originally posted by: bentekaya.ines.laposte.net

Hello,
can a person tell me why the drasys.or.prob.NormalDistribution is not
known by eclipse 3.2 and thanks. This is my code.
public class NormDist extends drasys.or.prob.NormalDistribution {
double _mean;
double _std;

public NormDist() {
super();
}

public NormDist(double mean, double std) {
super(mean,std);
this._mean = mean;
this._std = std;
}

public double inverseCdf(double probability) {
double x;
drasys.or.prob.NormalDistribution nsdist = new
drasys.or.prob.NormalDistribution();
x = this._std*nsdist.inverseCdf(probability)+this._mean;
return x;
}

}
Re: drasys.or.prob.NormalDistribution [message #512934 is a reply to message #326388] Mon, 08 February 2010 06:56 Go to previous message
Eclipse UserFriend
hi... in order to compile it you have to add or124 jar file to your java build path. you can download the jar file.
thnx.
Previous Topic:Resource rename and non-text based editors
Next Topic:FormEditor and dirty/commit protocol
Goto Forum:
  


Current Time: Wed May 07 13:39:39 EDT 2025

Powered by FUDForum. Page generated in 0.05872 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top