hello i hope you are all fine
if i want to do something in a each row every one separated
for example this matrix
3 4 5
2 1 3
6 3 1
i want to say if all elements of row >=3 put all elements of this row=0
we find in this example second row verify this condition
i want new matrix to be
3 4 5
0 0 0
6 3 1
i want this code please
thanks a lot

