% hiloanl2.m % usage: Y = hiloanl2(X,lc,hc,lr,hr) % Performs a low pass high pass analysis of the columns and rows of X. % It is assumed that length(hc), length(lc) <= #rows(X) and % length(hr), length(lr) <= #cols(X). function Y=hiloanl2(X,lc,hc,lr,hr) Y =hiloanlr(hiloanlc(X,lc,hc),lr,hr);