File: regression.h

package info (click to toggle)
libace-perl 1.92-12
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,012 kB
  • sloc: perl: 7,763; ansic: 7,420; makefile: 81
file content (20 lines) | stat: -rw-r--r-- 412 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*  Last edited: Dec  4 14:48 1998 (fw) */



/*  header file for regression.c */

/* $Id: regression.h,v 1.1 2002/11/14 20:00:06 lstein Exp $ */

#ifndef DEFINE_REGRESSION_h
#define DEFINE_REGRESSION_h

#include "regular.h"

typedef struct point {double x, y ;} POINT ;

void linearRegression(Array a, double *ap, double *bp, double *rp, double *wp) ;
void plotLinearRegression(char *title, Array a) ;

#endif