say,
a = [1,2,3; 0,0,0; 0,4,5];
how can I remove the rows of a that contain only zeros?
I found a link which works, but I don't know why:
http://www.mathworks.in/matlabcentral/newsreader/view_thread/281578
Suggesting:
a(all(a==0,2),:)=[]
1. what does the "=[]" syntax do
2. can...