How to define range for angle
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
farheen asdf
le 28 Août 2015
Commenté : Star Strider
le 14 Nov 2024
I have two angles theta1 and theta2 such that 0<theta1<pi/2 and 0<theta2<pi How do I define these angles in Matlab? I have used theta1=0:pi/2; theta2=0:pi;
but the problem is that further down in the task i need to use (theta1+theta2) which is not possible since by above range theta1 and theta2 have different dimensions.
0 commentaires
Réponse acceptée
Star Strider
le 28 Août 2015
If you want them both to have the same dimensions, use the linspace function:
theta1 = linspace(0, pi/2, 50);
theta2 = linspace(0, pi, 50);
Both of these have the length determined by the third argument (here 50), producing a (1x50) vector for each one.
0 commentaires
Plus de réponses (1)
Mingwei
le 14 Nov 2024
how to classify the angle into the specified ranges in matlab coding
1 commentaire
Star Strider
le 14 Nov 2024
Your quesiton is a bit ambiguous.
Voir également
Catégories
En savoir plus sur Interpolation 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!