How can I delete a certain row from a matrix depending on the 1st column value?
For example: A=[1 2 3;3 4 5;5 6 7]
where the values of the first column represent the ids and I want to delete the row that has 5 as an id.
I already know that A(3,:)=[] deletes the third row, but what if I have the id and don't know the row number?