'/' used for creating an axis, DFT
Afficher commentaires plus anciens
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
Réponse acceptée
Plus de réponses (1)
Steven Lord
le 27 Oct 2017
The / operator performs division.
>> x = 1/3
x =
0.333333333333333
>> from1To7InStepsOf2 = 1:2:7
from1To7InStepsOf2 =
1 3 5 7
Catégories
En savoir plus sur Discrete Fourier and Cosine Transforms dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!