From: Subrahmanya Shettigar on 21 Jun 2010 05:43 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 21 Jun 2010 10:13 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)
|
Pages: 1 Prev: Initializing Handle Graphics failed in matlabrc Next: arrayfun |