3d trajectory plot
Show older comments
Im trying to create a 3d plot of 10 trajectories. I have the equation for the z axis and the x axis as an array. However i would like to start the plot at a point along the y axis instead of zero. I know how I want to go plotting the trajectories, it's getting the plot to start at a given point on the y axis. For example starting at the point (0 24 0) or (0 26 2).
5 Comments
Ameer Hamza
on 6 Apr 2020
What are the equations of these trajectories?
darova
on 6 Apr 2020
What is the question?
Tyler Hajovsky
on 6 Apr 2020
Tyler Hajovsky
on 6 Apr 2020
Marcos
on 27 Nov 2024
Moved: Walter Roberson
on 27 Nov 2024
How to plot a initial point to final point in 3D graphics, using simultanious trajectory definite vs real time trajectory real PSO
Answers (1)
Ameer Hamza
on 6 Apr 2020
Edited: Ameer Hamza
on 6 Apr 2020
Try this
v= 6.5;%ft/s
g= 32.2; %ft/s^2
theta= 30; %degrees
x= 0:.1:2;
y= randi(48)*ones(size(x));
z1= (x*tand(theta)-((g*x.^2)/(2*v^2*.75)));
plot3(x,y,z1)
grid on
xlabel('x');
ylabel('y');
zlabel('z');
4 Comments
Tyler Hajovsky
on 6 Apr 2020
Ameer Hamza
on 6 Apr 2020
It is not empty array. It is array of all ones. I have updated the code to clarify it.
Tyler Hajovsky
on 6 Apr 2020
Ameer Hamza
on 6 Apr 2020
Glad to be of help.
Categories
Find more on Line 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!