Borrar filtros
Borrar filtros

How to create an envelope in a plot from a csv. data?

8 visualizaciones (últimos 30 días)
Mathias Braun
Mathias Braun el 20 de En. de 2024
Comentada: Mathias Braun el 20 de En. de 2024
Hey guys,
I'm struggeling right now to create an envelope to a plot from my csv. data. Could somebody pls help me?
I've got the following code already:
fileName = 'test_amplitude_100_4.csv';
t = readtable(fileName);
times = t.Var1;
distances = t.Var2-6.894;
times = seconds(times-times(3));
figure(1)
plot(times, distances, 'b-');
grid on;
hold on;
xlabel('Zeit in s');
ylabel('Entfernung in mm');

Respuestas (1)

Sam Chak
Sam Chak el 20 de En. de 2024
MATLAB has a function called envelope() that enables users to compute the upper and lower envelopes of a signal. You can find more information about it here:
Have you had a chance to check this out?
  1 comentario
Mathias Braun
Mathias Braun el 20 de En. de 2024
Yes, I check it out but I dont get what shut be my q in the envelope? Is this the distances variable?

Iniciar sesión para comentar.

Etiquetas

Productos


Versión

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by