An open API service indexing awesome lists of open source software.

https://github.com/maxam2017/simple_curve_fitting

for 105 fall semester linear algebra course
https://github.com/maxam2017/simple_curve_fitting

Last synced: 6 months ago
JSON representation

for 105 fall semester linear algebra course

Awesome Lists containing this project

README

          

# simple_curve_fitting
## error analyzing
```
e=A'*W-b; %error vector
sum=0;
for i=1:100
sum=sum+e(i)^2;
end
sum=sum/100;
```
## result
* 指數函數
* dataset1(0.0750)


* dataset2(0.0236)

* 高斯函數
* dataset1(0.0741)


* dataset2(0.0169)