A vector can be represented by its rectangular coordinates x and y or by its polar coordinates r and . Theta is measured in radians. The relationship between them is given by the equations:
belongs to book: MATLAB: A Practical Introduction to Programming and Problem Solving|Stormy Attaway|Fourth Edition| Chapter number:1| Question number:30.1
All Answers
total answers (1)
>> r = 5; >> theta = 0.5; >> x = r * cos(theta) x = 4.3879 >> y = r * sin(theta) y = 2.3971
need an explanation for this answer? contact us directly to get an explanation for this answer