From 6011540ce239922c0723ff2f1534e915b420cd1f Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Tue, 17 Jul 2018 18:02:33 +0530 Subject: remove autogenerated files remove execute permission from scilab files update macros/names fix build process by building macros before help --- help/en_US/scilab_en_US_help/arch_test.html | 82 ----------------------------- 1 file changed, 82 deletions(-) delete mode 100644 help/en_US/scilab_en_US_help/arch_test.html (limited to 'help/en_US/scilab_en_US_help/arch_test.html') diff --git a/help/en_US/scilab_en_US_help/arch_test.html b/help/en_US/scilab_en_US_help/arch_test.html deleted file mode 100644 index 6949fb0..0000000 --- a/help/en_US/scilab_en_US_help/arch_test.html +++ /dev/null @@ -1,82 +0,0 @@ -
- -perform a Lagrange Multiplier (LM) test of thenull hypothesis of no conditional heteroscedascity against the alternative of CH(P)
arch_test(Y,X,P) -PVAL = arch_test(Y,X,P) -[PVAL, LM]= arch_test(Y,X,P)
Degrees of freedom
PVAL is the p-value (1 minus the CDF of this distribution at LM) of the test
perform a Lagrange Multiplier (LM) test of thenull hypothesis of no conditional heteroscedascity against the alternative of CH(P).
-I.e., the model is
-y(t) = b(1) * x(t,1) + ... + b(k) * x(t,k) + e(t),
-given Y up to t-1 and X up to t, e(t) is N(0, h(t)) with
-h(t) = v + a(1) * e(t-1)^2 + ... + a(p) *e(t-p)^2, and the null is a(1) == ... == a(p) == 0.
-If the second argument is a scalar integer, k,perform the sametest in a linear autoregression model of orderk, i.e., with
-[1, y(t-1), ..., y(t-K)] as the t-th row of X.
-Under the null, LM approximatel has a chisquare distribution with P degrees of freedom and PVAL is the p-value (1 minus the CDF of this distribution at LM) of the test.
-If no output argument is given, the p-value is displayed.