How to find a value at a certain point/time slot?
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jan Ali
el 18 de Mayo de 2021
Hello everyone!
Can anyone help me with finding the value at a specific point/time? For exp. I have a signal to be analyzed, but I need to find the value for exp. at 7 s (total length is 10 s).
Thanks in advance,
Respuesta aceptada
KSSV
el 18 de Mayo de 2021
t = 0:0.1:10 ;
y = exp(t) ;
ti = 7 ;
yi = interp1(t,y,ti) ;
[ti yi]
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Preprocessing 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!