项目作者: gregdhill

项目描述 :
Linear Regression - C
高级语言: C
项目地址: git://github.com/gregdhill/lin-reg.git
创建时间: 2018-06-02T20:46:59Z
项目社区:https://github.com/gregdhill/lin-reg

开源协议:

下载


Linear Regression

Pure C implementation of linear least squares for regression analysis using the derived normal equations to obtain optimal weights. This is based in part on the MLPR module taken at the University of Edinburgh in 2017. The code is currently unoptimised so it should not be used in production, but it will output all transformations throughout execution.

Compile: gcc -o lreg lreg.c -lm