Accord.Statistics.Testing.WaldTest.WaldTest C# (CSharp) Method

WaldTest() public method

Constructs a Wald's test.
public WaldTest ( double statistic ) : System
statistic double The test statistic, as given by (θ-θ')/SE.
return System
        public WaldTest(double statistic)
            : base(statistic, OneSampleHypothesis.ValueIsDifferentFromHypothesis) { }

Same methods

WaldTest::WaldTest ( double estimatedValue, double hypothesizedValue, double standardError ) : System
WaldTest