How to make a detaset with uniform interval.
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Nisar Ahmed
el 6 de Dic. de 2021
Comentada: Nisar Ahmed
el 6 de Dic. de 2021
Hi,
I have a vector with dimensions say t with dimensions 1*553. However, the interval between t values is not constant. like if t(2) - t(1) = 0.00012671 and t(4) - t(2) = 0.0001268. How I can make this interval uniform in such a way that the length (553) remains same?
0 comentarios
Respuesta aceptada
DrZoidberg
el 6 de Dic. de 2021
Editada: DrZoidberg
el 6 de Dic. de 2021
maybe the linespace function will help you to achive this:
myinterval = linspace(t_1, t_2, 533)
Más respuestas (0)
Ver también
Categorías
Más información sobre Interpolation 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!