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

76 views (last 30 days)
How to dock/undock an image using matlab code instead of doing manually?...can any one help
  2 Comments
Image Analyst
Image Analyst on 5 Jul 2015
Dock what to what? You have axes, figures, the MATLAB development environment, etc. Can you show screenshots of what you started with and what you got after you did it manually?

Sign in to comment.

Accepted Answer

bio lim
bio lim on 6 Jul 2015
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

More Answers (0)

Categories

Find more on Interactive Control and Callbacks in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!