h = pwGetHandlerEqualizer Use this function to customize the positioning of the PottersWheel Equalizer interface. If the Equalizer is still closed, h will be empty ([]).
% Get handler h = pwGetHandlerEqualizer; % Get all properties get(h) % Get width and height p = get(h, 'Position'); width = p(3); height = p(4); % Change position set(h, 'Position', [100 100 width height])