summaryrefslogtreecommitdiff
path: root/getSection.m
blob: a5addc3522b7a2c61156359ed905f6ed31067134 (plain)
1
2
3
4
5
6
7
function [sec] = getSection(inp,a,b)
    [m,n] = size(inp);
    ste = (m-1)/b;
    st=1+ceil(ste*(a-1));
    ed=1+floor(ste*a);
    sec = inp(st:ed,:);
end