Marker between two points

조회 수: 5 (최근 30일)
TheDice
TheDice 2021년 4월 28일
답변: Shubham Khatri 2021년 5월 3일
Hello is there for the marker the function that the not only appears when I click on the measuring points but also when I click somewhere between the measuring points on the straight line?
This is my example:
x = (1:10);
y = randi([1 10],1,10);
app.s = plot(app.UIAxes,x,y,'-o');

채택된 답변

Shubham Khatri
Shubham Khatri 2021년 5월 3일
Hello,
You may not be able to do this with these limited set of values. If you want to place marker on the place of your click, you need to define the plot with more points. To explain this, please take a look at this code below.
x = (1:0.001:10); %defining a large number of points instead of 10
y = sin(x); % a continuous function
plot(x,y,'-o');
Also, you can refer to this community answer for your support.
Hope it helps

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by