How can I create vector for values in the range -π < θ < π ?
18 views (last 30 days)
Show older comments
Somaya Alaa
on 27 Nov 2016
Answered: Image Analyst
on 27 Nov 2016
How can I create vector for values in the range -π < θ < π ?
0 Comments
Accepted Answer
Image Analyst
on 27 Nov 2016
You can use linspace() to specify the number of elements you want:
margin = 0.0001; % Whatever you want. How close to pi you want to allow.
numElements= 1000; % Whatever you want. How many elements in your vector.
theta = linspace(-pi + margin, pi - margin, numElements);
0 Comments
See Also
Categories
Find more on Logical 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!