Skip to content
Snippets Groups Projects
Commit 31f82f0d authored by Mark Jenkinson's avatar Mark Jenkinson
Browse files

Added Saad changes back in

parent 82adeaee
No related branches found
No related tags found
No related merge requests found
...@@ -1497,6 +1497,24 @@ ReturnMatrix geqt(const Matrix& mat1,const Matrix& mat2) ...@@ -1497,6 +1497,24 @@ ReturnMatrix geqt(const Matrix& mat1,const Matrix& mat2)
res.Release(); res.Release();
return res; return res;
} }
ReturnMatrix geqt(const Matrix& mat,const float a)
{
int ncols = mat.Ncols();
int nrows = mat.Nrows();
Matrix res(nrows,ncols);
res=0.0;
for (int ctr1 = 1; ctr1 <= nrows; ctr1++) {
for (int ctr2 =1; ctr2 <= ncols; ctr2++) {
if( mat(ctr1,ctr2) >= a){
res(ctr1,ctr2) = 1.0;
}
}
}
res.Release();
return res;
}
ReturnMatrix leqt(const Matrix& mat1,const Matrix& mat2) ReturnMatrix leqt(const Matrix& mat1,const Matrix& mat2)
......
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