How to range array steps
133 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Life is Wonderful
el 22 de Sept. de 2021
Comentada: Life is Wonderful
el 22 de Sept. de 2021
Hi
I am looking for a logic to range of value from -1 to +1 including 0 where data should look like
-1-2-3...-32 : +32+31..1
Example snippet
x = [-1:-1:-32:32:1:1]
Note : No Loops involed
Thank you
0 comentarios
Respuesta aceptada
Bjorn Gustavsson
el 22 de Sept. de 2021
Split into two sequences:
x = [-1:-1:-32,32:-1:1];
HTH
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Matched Filter and Ambiguity Function 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!