How can I create vector for values in the range -π < θ < π ?

 Réponse acceptée

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);

Plus de réponses (1)

Stephen23
Stephen23 le 27 Nov 2016
Modifié(e) : Stephen23 le 27 Nov 2016

3 commentaires

I know this way. But I do not want -pi and +pi themselves to be included in the vector.
Stephen23
Stephen23 le 27 Nov 2016
Modifié(e) : Stephen23 le 27 Nov 2016
S = 0.01;
T = S-pi:S:pi-S;
Thank you for your help

Connectez-vous pour commenter.

Catégories

En savoir plus sur Matrices and Arrays dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by