Home | History | Annotate | Line # | Download | only in wscons
mra.c revision 1.1
      1  1.1  tsarna /*	$NetBSD: mra.c,v 1.1 2004/05/28 17:52:06 tsarna Exp $	*/
      2  1.1  tsarna 
      3  1.1  tsarna /*
      4  1.1  tsarna  * Copyright (c) 1999 Shin Takemura All rights reserved.
      5  1.1  tsarna  * Copyright (c) 1999 PocketBSD Project. All rights reserved.
      6  1.1  tsarna  *
      7  1.1  tsarna  * Redistribution and use in source and binary forms, with or without
      8  1.1  tsarna  * modification, are permitted provided that the following conditions
      9  1.1  tsarna  * are met:
     10  1.1  tsarna  * 1. Redistributions of source code must retain the above copyright
     11  1.1  tsarna  *    notice, this list of conditions and the following disclaimer.
     12  1.1  tsarna  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  tsarna  *    notice, this list of conditions and the following disclaimer in the
     14  1.1  tsarna  *    documentation and/or other materials provided with the distribution.
     15  1.1  tsarna  *
     16  1.1  tsarna  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     17  1.1  tsarna  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18  1.1  tsarna  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19  1.1  tsarna  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     20  1.1  tsarna  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     21  1.1  tsarna  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     22  1.1  tsarna  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     23  1.1  tsarna  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     24  1.1  tsarna  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25  1.1  tsarna  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26  1.1  tsarna  * SUCH DAMAGE.
     27  1.1  tsarna  *
     28  1.1  tsarna  */
     29  1.1  tsarna 
     30  1.1  tsarna #include <sys/cdefs.h>
     31  1.1  tsarna __KERNEL_RCSID(0, "$NetBSD: mra.c,v 1.1 2004/05/28 17:52:06 tsarna Exp $");
     32  1.1  tsarna 
     33  1.1  tsarna #include <sys/param.h>
     34  1.1  tsarna #include <sys/systm.h>
     35  1.1  tsarna 
     36  1.1  tsarna int mra_Y_AX1_BX2_C(int *, int, int *, int, int *, int, int, int, int *,
     37  1.1  tsarna     int *, int *);
     38  1.1  tsarna 
     39  1.1  tsarna /*
     40  1.1  tsarna  * multiple regression analysis
     41  1.1  tsarna  * Y = AX1 + BX2 + C
     42  1.1  tsarna  */
     43  1.1  tsarna int
     44  1.1  tsarna mra_Y_AX1_BX2_C(int *y, int ys, int *x1, int x1s, int *x2, int x2s, int n,
     45  1.1  tsarna     int scale, int *a, int *b, int *c)
     46  1.1  tsarna {
     47  1.1  tsarna 	int i;
     48  1.1  tsarna 	int64_t X1a, X2a, Ya;
     49  1.1  tsarna 	int64_t X1X1s, X2X2s, X1X2s;
     50  1.1  tsarna 	int64_t YYs, X1Ys, X2Ys;
     51  1.1  tsarna 	int64_t S11, S22, S12;
     52  1.1  tsarna 	int64_t SYY, S1Y, S2Y;
     53  1.1  tsarna 	int64_t A, B, C, M;
     54  1.1  tsarna #define AA(p, s, i)	(*((long*)(((char*)(p)) + (s) * (i))))
     55  1.1  tsarna #define X1(i)		AA(x1, x1s, i)
     56  1.1  tsarna #define X2(i)		AA(x2, x2s, i)
     57  1.1  tsarna #define Y(i)		AA(y, ys, i)
     58  1.1  tsarna 
     59  1.1  tsarna 	/*
     60  1.1  tsarna 	 * get avarage and sum
     61  1.1  tsarna 	 */
     62  1.1  tsarna 	X1a = 0;	X2a = 0;	Ya = 0;
     63  1.1  tsarna 	X1X1s = 0;	X2X2s = 0;	X1X2s = 0;
     64  1.1  tsarna 	X1Ys = 0;	X2Ys = 0;	YYs = 0;
     65  1.1  tsarna 	for (i = 0; i < n; i++) {
     66  1.1  tsarna 		X1a += X1(i);
     67  1.1  tsarna 		X2a += X2(i);
     68  1.1  tsarna 		Ya += Y(i);
     69  1.1  tsarna 
     70  1.1  tsarna 		X1X1s += X1(i) * X1(i);
     71  1.1  tsarna 		X2X2s += X2(i) * X2(i);
     72  1.1  tsarna 		X1X2s += X1(i) * X2(i);
     73  1.1  tsarna 
     74  1.1  tsarna 		X1Ys += X1(i) * Y(i);
     75  1.1  tsarna 		X2Ys += X2(i) * Y(i);
     76  1.1  tsarna 		YYs += Y(i) * Y(i);
     77  1.1  tsarna 	}
     78  1.1  tsarna 	X1a /= n;	X2a /= n;	Ya /= n;
     79  1.1  tsarna 
     80  1.1  tsarna 	S11 = X1X1s - n * X1a * X1a;
     81  1.1  tsarna 	S22 = X2X2s - n * X2a * X2a;
     82  1.1  tsarna 	S12 = X1X2s - n * X1a * X2a;
     83  1.1  tsarna 
     84  1.1  tsarna 	SYY = YYs - n * Ya * Ya;
     85  1.1  tsarna 	S1Y = X1Ys - n * X1a * Ya;
     86  1.1  tsarna 	S2Y = X2Ys - n * X2a * Ya;
     87  1.1  tsarna 
     88  1.1  tsarna #if 0
     89  1.1  tsarna 	printf("X1a=%d X2a=%d Ya=%d\n", (int)X1a, (int)X2a, (int)Ya);
     90  1.1  tsarna 	printf("X1X1s=%d X2X2s=%d X1X2s=%d\n", (int)X1X1s, (int)X2X2s, (int)X1X2s);
     91  1.1  tsarna 	printf("X1Ys=%d X2Ys=%d YYs=%d\n", (int)X1Ys, (int)X2Ys, (int)YYs);
     92  1.1  tsarna 	printf("S11=%d S22=%d S12=%d\n", (int)S11, (int)S22, (int)S12);
     93  1.1  tsarna 	printf("SYY=%d S1Y=%d S2Y=%d\n", (int)SYY, (int)S1Y, (int)S2Y);
     94  1.1  tsarna #endif
     95  1.1  tsarna 
     96  1.1  tsarna 	M = (S11 * S22 - S12 * S12);
     97  1.1  tsarna 	if (M == 0) {
     98  1.1  tsarna 		/* error */
     99  1.1  tsarna 		return -1;
    100  1.1  tsarna 	}
    101  1.1  tsarna 
    102  1.1  tsarna 	A = (S1Y * S22 - S2Y * S12) * scale / M;
    103  1.1  tsarna 	B = (S2Y * S11 - S1Y * S12) * scale / M;
    104  1.1  tsarna 	C = Ya - (A * X1a + B * X2a) / scale;
    105  1.1  tsarna 
    106  1.1  tsarna #if 0
    107  1.1  tsarna 	printf("A=%d B=%d C=%d\n", (int)A, (int)B, (int)C);
    108  1.1  tsarna #endif
    109  1.1  tsarna 	*a = A;
    110  1.1  tsarna 	*b = B;
    111  1.1  tsarna 	*c = C;
    112  1.1  tsarna 
    113  1.1  tsarna 	return (0);
    114  1.1  tsarna }
    115