Well
I have a 2D array matrix file like
0.5 0.8 0.9 0.10
1.0 0.5 0.75 0.6
2.5 6.0 0.5 0.53
3.0 2.75 0.9 0.5
I want to read this file as csv and edit the file such as when the values are above (> 1) i want to edit it as 1.0
so my matrix will look like
0.5 0.8 0.9 0.10
1.0 0.5 0.75 0.6
1.0 1.0 0.5 0.53
1.0 1.0 0.9 0.5