MATLAB black hole variable
For 2009b or later, there is the tilde sign "~"
[~,cols] = size(A);
Alternatively, in your specific case
cols = size(A,2);
For 2009b or later, there is the tilde sign "~"
[~,cols] = size(A);
Alternatively, in your specific case
cols = size(A,2);