Assuming I have a 7x3 matrix which contains both integers and non-integers. What i would want is to remove all rows containing only integers. An example is as follows:
A = [1, 1, 2
2, 1.5, 1
3, 1.5, 2
1, 2, 1
2, 2.5, 1
3, 2.5, 1
1, 3, 2];
My output should be:
B = [2, 1.5, 1
3, 1.5, 2
2, 2.5, 1
3, 2.5, 1];
Please, how can I possibly achieve this? Thank you.