Fix files encoding. Go from ISO8859-1 to UTF-8.

This commit is contained in:
Mateusz Skowroński
2015-09-21 21:44:11 +02:00
committed by Yorik van Havre
parent 0ce3d46e92
commit 43a4a5938c
674 changed files with 1154 additions and 1154 deletions

View File

@@ -65,7 +65,7 @@ double Routines::TrapezoidIntergration(const std::vector<double> &WithRespectTo,
std::vector<double> Routines::NewtonStep(std::vector<double> &F,std::vector<std::vector<double> > &DF)
{
// löst folgendes Gleichungssystem: DF*x = F
// löst folgendes Gleichungssystem: DF*x = F
int siz = (int) F.size();
std::vector<double> x_new(siz);
std::vector<int> piv(siz); // pivotelement
@@ -73,7 +73,7 @@ std::vector<double> Routines::NewtonStep(std::vector<double> &F,std::vector<std:
ublas::matrix<double> A(siz, siz);
ublas::matrix<double> b(1, siz);
// füllt blas-matrizen
// füllt blas-matrizen
for (unsigned int i=0; i<siz; ++i)
{
b(0,i) = -F[i];
@@ -89,8 +89,8 @@ std::vector<double> Routines::NewtonStep(std::vector<double> &F,std::vector<std:
cout << A(2,0) << "," << A(2,1) << "," << A(2,2) << endl;*/
atlas::lu_factor(A,piv); // führt LU-Zerlegung durch
atlas::getrs(A,piv,b); // löst Gl.system A*x = b (b wird mit der Lösung überschrieben)
atlas::lu_factor(A,piv); // führt LU-Zerlegung durch
atlas::getrs(A,piv,b); // löst Gl.system A*x = b (b wird mit der Lösung überschrieben)
for (unsigned int i=0; i<siz; ++i)
{