MATLAB: How to dock/undock an image using matlab code instead of doing manually

imageimage acquisitionimage analysisimage processing

How to dock/undock an image using matlab code instead of doing manually?…can any one help

Best Answer

You mean like this?
Example:
h = figure(3000); % Creating a figure
set(h,'name','figure_name','numbertitle','on') % Setting the name of the figure
clf(h) % Erase the contents of the figure
set(h,'WindowStyle','docked') % Insert the figure to dock
Related Question