'/' used for creating an axis, DFT
Mostrar comentarios más antiguos
How does building an axis in that way: 'freq= [-pi+pi/L:2*pi/L:pi-pi/L];' work exactly? Why so many '/' signs and what do they exactly do? DFT
Respuesta aceptada
Más respuestas (1)
Steven Lord
el 27 de Oct. de 2017
The / operator performs division.
>> x = 1/3
x =
0.333333333333333
>> from1To7InStepsOf2 = 1:2:7
from1To7InStepsOf2 =
1 3 5 7
Categorías
Más información sobre Discrete Fourier and Cosine Transforms en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!