home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD2.iso
/
Misc
/
The_SOURCE#7.LHA
/
Source
/
polyfit.lha
/
polyfit
/
fit.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1990-05-04
|
314 b
|
26 lines
#include <stdio.h>
#include <math.h>
struct point
{
double X;
double Y;
};
typedef struct point point;
typedef point *points;
typedef double matelm;
typedef matelm *matrow;
typedef matrow *matrix;
typedef char *pointer;
extern char *calloc();
matrix MatInit();
double MatInv();
pointer Calloc();