Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Eclipse Platform » drasys.or.prob.NormalDistribution
drasys.or.prob.NormalDistribution [message #326388] Tue, 18 March 2008 16: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 11:56 Go to previous message
Gishara  is currently offline Gishara Friend
Messages: 1
Registered: February 2010
Junior Member
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: Thu Apr 25 07:11:41 GMT 2024

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

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

Back to the top