'/' used for creating an axis, DFT
Show older comments
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
Accepted Answer
More Answers (1)
Steven Lord
on 27 Oct 2017
The / operator performs division.
>> x = 1/3
x =
0.333333333333333
>> from1To7InStepsOf2 = 1:2:7
from1To7InStepsOf2 =
1 3 5 7
Categories
Find more on Discrete Fourier and Cosine Transforms in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!