In OMP why the 'support' of the received signal is not found in one step, by selecting the $K$ maximum correlated columns of the sensing matrix $A$? where $K$ is the sparsity of the signal. Like in MATLAB
[val ind] = sort(A'*Y); %Y is received signal
signal_Support = ind(1:K)...