'/' used for creating an axis, DFT
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
sprklspring
le 27 Oct 2017
Réponse apportée : Steven Lord
le 27 Oct 2017
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
0 commentaires
Réponse acceptée
Star Strider
le 27 Oct 2017
This assignment:
freq = [-pi+pi/L:2*pi/L:pi-pi/L];
is apparently for a two-sided Fourier transform, where ‘L’ is the length of the Fourier transform vector. The increment of the vector is ‘pi/L’, where the ‘/’ is right division (specifically, ‘matrix right division’, see the mrdivide (link) documentation for details). The vector goes from ( -pi + the increment ) to ( pi - the increment ). Supply an integer value for ‘L’ and run that line to see how it works.
0 commentaires
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
0 commentaires
Voir également
Catégories
En savoir plus sur Discrete Fourier and Cosine Transforms dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!