Does the drawfreehand function work with AppDesigner?

Is the 'drawfreehand' function supported in AppDesigner?

 채택된 답변

MathWorks Support Team
MathWorks Support Team 2019년 8월 28일
The 'drawfreehand' function can be used in App Designer by utilizing the 'axes' object:
The 'axes' object is available in AppDesigner's 'uifigure' starting MATLAB R2018b.
The following commands uses 'drawfreehand' in App Designer:
fig = app.UIFigure;
ax = axes(fig);
h = drawfreehand(ax);

추가 답변 (0개)

카테고리

제품

릴리스

R2018b

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by