MATLAB: How to convert a matrix like this

settdiff

Hello everyone, I need a help with this problem. I would like to convert a matrix to another one, like the following examples: A=[1;2;3;0;5;7]—–>A=[1;2;3;5;7] B=[0;1;3;4;5;6]—->B=[1;3;4;5;6] That means I have a new matrix without 0. Thank you very much!

Best Answer

Try this:
A(A==0)=[]
Related Question