aa1_bottom_left

function M = bottom_left(N,n)
    % lines = size(N,1);
    % columns = size(N,2);
    % M = N(lines - n + 1 : columns, 1 : n)
    M = N(end - n + 1 : end, 1 : n);
end

 

Posted in Uncategorized