how to put marker on plot which is not in continuous

조회 수: 1 (최근 30일)
navi g
navi g 2017년 1월 24일
편집: navi g 2017년 1월 24일
i have already used this code for putting marker in plot, I got graph like this I need to put marker after some cycle, is this can do manualy in graph or what should i change in code, please help me
%this is my program clc X=0:0.002:10;
%ph=90;
A=3.5;
w=2*pi*0.25;
w2=2*pi*0.3;
w3=2*pi*0.35;
Y=A*sin(w*X);
Y1=A*sin(w2*X);
Y2=A*sin(w3*X);
plot(X,Y,X,Y1,X,Y2)
hold on
Xi = X(X>=4.08 & X<=4.36) ;
y2 = Y2(X>=4.08 & X<=4.36) ;
plot(Xi(1:10:end),y2(1:10:end),'sk')
hold on
ill get plot i have attached,
but i need put marker like this image, repeating markers after some cycle, but i have only x values.
how can i do this.
thank you

답변 (0개)

카테고리

Help CenterFile Exchange에서 Line Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by