From: Subrahmanya Shettigar on
I have inserted axes inside the uipanel. I would like to display the image in axes. please help me.

with regards
subrahmanya
From: Walter Roberson on
Subrahmanya Shettigar wrote:
> I have inserted axes inside the uipanel. I would like to display the
> image in axes. please help me.

axes() the axes handle to make it current and then keep going as usual.

However, I personally recommend always explicitly adding the axes to
calls that can accept it, and to explicitly use the Parent property for
calls that do not accept an axes, such as in:

plot(TheAxisHandle, x, y)
hold(TheAxisHandle,'on')
line(x2, y2, 'Parent', TheAxisHandle)