% hilosyn2.m % usage: Y = hilosyn2(X,lc,hc,lr,hr) % Performs a low pass high pass synthesis 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=hilosyn2(X,lc,hc,lr,hr) Y =hilosynr(hilosync(X,lc,hc),lr,hr);