Skip to content
Snippets Groups Projects
Commit 8482373a authored by Matthew Webster's avatar Matthew Webster
Browse files

changed names

parent 8f3009fd
No related branches found
No related tags found
No related merge requests found
......@@ -1124,10 +1124,10 @@ mat44 newmat_to_mat44(const Matrix& inmat)
ColumnVector seq(const int size)
{
ColumnVector vector(size);
ColumnVector outputVector(size);
for(int i=1; i<=size; i++)
vector(i) = i;
return vector;
outputVector(i) = i;
return outputVector;
}
float interp1(const ColumnVector& x, const ColumnVector& y, float xi)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment