- Convert Angles to Radians: MATLAB trigonometric functions use radians, so first convert the angles from degrees to radians.
- Calculate Vector Components: Use the magnitude and angle to find the x and y components of each vector.
- Plot the Vectors: Use the "quiver" function to plot these vectors from the origin.
- Calculate the Resultant Vector: Sum the components of the vectors to find the resultant vector.
- Plot the Resultant Vector: Add the resultant vector to the plot.
- Refer to the documentation of "deg2rad" for converting degrees to radians: https://www.mathworks.com/help/matlab/ref/deg2rad.html
- Refer to the documentation of "quiver" for plotting vectors: https://www.mathworks.com/help/matlab/ref/quiver.html
- Refer to the documentation of "atan2" for computing the angle of the resultant vector: https://www.mathworks.com/help/matlab/ref/atan2.html