How do i make a 'pushbutton' plot a point?

%code
hbottom_left = uicontrol('Style','pushbutton',...
'String','Bottom Left','Position',[270,220,70,25]);
%end of code
I want this pushbutton to plot the point (0.5,0.5), i think i need to use the callback function but i dont know the exact code, could someone provide the exact code, thanks in advance.

 採用された回答

Image Analyst
Image Analyst 2014 年 7 月 12 日

0 投票

Just right click on the button and say to view the callback. It will put you in the callback in the m-file. Then just write:
plot(0.5, 0.5, 'b*', 'MarkerSize', 15, 'LineWidth', 3); % Adjust as needed.
grid on;

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeInteractive Control and Callbacks についてさらに検索

質問済み:

2014 年 7 月 11 日

回答済み:

2014 年 7 月 12 日

Community Treasure Hunt

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

Start Hunting!

Translated by