├── .gitattributes ├── .gitignore ├── README.md ├── SimpleDataPrediction.sln └── SimpleDataPrediction ├── App.config ├── Datas.cs ├── Forecaster.cs ├── GaussNewton.cs ├── MyMatrix.cs ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── SimpleDataPrediction.csproj ├── SquareMatrix.cs ├── data.txt └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinoChan/SimpleDataPrediction/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinoChan/SimpleDataPrediction/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinoChan/SimpleDataPrediction/HEAD/README.md -------------------------------------------------------------------------------- /SimpleDataPrediction.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinoChan/SimpleDataPrediction/HEAD/SimpleDataPrediction.sln -------------------------------------------------------------------------------- /SimpleDataPrediction/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinoChan/SimpleDataPrediction/HEAD/SimpleDataPrediction/App.config -------------------------------------------------------------------------------- /SimpleDataPrediction/Datas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinoChan/SimpleDataPrediction/HEAD/SimpleDataPrediction/Datas.cs -------------------------------------------------------------------------------- /SimpleDataPrediction/Forecaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinoChan/SimpleDataPrediction/HEAD/SimpleDataPrediction/Forecaster.cs -------------------------------------------------------------------------------- /SimpleDataPrediction/GaussNewton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinoChan/SimpleDataPrediction/HEAD/SimpleDataPrediction/GaussNewton.cs -------------------------------------------------------------------------------- /SimpleDataPrediction/MyMatrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinoChan/SimpleDataPrediction/HEAD/SimpleDataPrediction/MyMatrix.cs -------------------------------------------------------------------------------- /SimpleDataPrediction/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinoChan/SimpleDataPrediction/HEAD/SimpleDataPrediction/Program.cs -------------------------------------------------------------------------------- /SimpleDataPrediction/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinoChan/SimpleDataPrediction/HEAD/SimpleDataPrediction/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimpleDataPrediction/SimpleDataPrediction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinoChan/SimpleDataPrediction/HEAD/SimpleDataPrediction/SimpleDataPrediction.csproj -------------------------------------------------------------------------------- /SimpleDataPrediction/SquareMatrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinoChan/SimpleDataPrediction/HEAD/SimpleDataPrediction/SquareMatrix.cs -------------------------------------------------------------------------------- /SimpleDataPrediction/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinoChan/SimpleDataPrediction/HEAD/SimpleDataPrediction/data.txt -------------------------------------------------------------------------------- /SimpleDataPrediction/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinoChan/SimpleDataPrediction/HEAD/SimpleDataPrediction/packages.config --------------------------------------------------------------------------------