MATLAB: How could I extract all the row and column of the matrix if elements of matrix satisfies certain conditions

{ could you help me }

How could I extract all the row and column of the matrix if elements of matrix satisfies certain conditions?

Best Answer

Try this:
if someCondition
allRowsAndColumns = YourMatrix;
end
Seriously, that's about all we can say given what you've told us.