How to plot direction of forces on a body with polar plots or similar?
Show older comments
I'm simulating the forces acting on a stationary object. I have a data sample of a time series that includes Forces, and the direction where the object experiences the force (sample data set is attached).
load("sampleData.mat");
figure;
subplot(2,1,1); grid minor; hold on
plot(data.time, data.force)
ylabel('[N]'); title('Force')
subplot(2,1,2); grid minor; hold on
plot(data.time, data.forceDirection)
ylabel('[deg]'); title('Force Direction')
Now, I want to visualize the force on a polar plot to see the direction in a rather graphical way. Something similar to the following figure (of course, the directions and values are different than the sample data attached).

I could be wrong to assume that this can be done, but if it is possible, how can I do this?
Accepted Answer
More Answers (0)
Categories
Find more on Polar Plots 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!






