Find discontinuities and lift up or pull down the part after the discontinuity
21 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
lena kappa
el 13 de Dic. de 2021
Comentada: Jan
el 24 de Dic. de 2021
Hi everyone i have a singal with discontinuities.Does anyone know how can i find the discontinuities and at those points lift up or pull down the remaining signal?
3 comentarios
Respuesta aceptada
Jan
el 13 de Dic. de 2021
x = linspace(1, 10*pi, 200);
y = sin(x);
y(60:90) = y(60:90) + 1;
y(120:180) = y(120:180) - 1;
yOrig = y;
limit = 0.2;
dy = [0, diff(y)];
jump = strfind(abs(dy) > limit, [false, true, false]);
for ijump = 1:numel(jump)
k = jump(ijump);
y(k+1:end) = y(k+1:end) - dy(k+1);
end
figure
axes('NextPlot', 'add')
plot(x, yOrig, '-r', x, y, 'bo')
y2 = lowpass(y, 30, 200);
plot(x, y2, 'c+')
8 comentarios
Más respuestas (1)
Image Analyst
el 13 de Dic. de 2021
See a similar discussion started/asked by Matt J:
5 comentarios
Image Analyst
el 15 de Dic. de 2021
I guess those were just some parameters to cause a chunk of the waveform to shift by a reasonable amount.
Ver también
Categorías
Más información sobre Surface and Mesh Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!