![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/280051/image.png)
Plot 3D Vector
16 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Burak Alakus
le 27 Mar 2020
Commenté : Burak Alakus
le 27 Mar 2020
Hello guys,
I want to plot the given example with MATLAB yet i can not do that. Can you guys help me?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/280043/image.png)
0 commentaires
Réponse acceptée
Ameer Hamza
le 27 Mar 2020
Modifié(e) : Ameer Hamza
le 27 Mar 2020
Try this
ax = axes();
view(ax,[-120 30]);
grid on;
hold(ax);
ax.XDir = 'reverse';
ax.YDir = 'reverse';
ax.XLim = [0 8];
ax.YLim = [0 8];
ax.ZLim = [0 8];
ax.XTick = 0:2:8;
ax.YTick = 0:2:8;
ax.ZTick = 0:2:8;
origin = [2 2 0];
xaxis = [3 2 0];
yaxis = [2 1 0];
zaxis = [2 2 1];
plot3([origin(1) xaxis(1)], [origin(2) xaxis(2)], [origin(3) xaxis(3)], 'r', ...
'LineWidth', 3);
plot3([origin(1) yaxis(1)], [origin(2) yaxis(2)], [origin(3) yaxis(3)], 'b', ...
'LineWidth', 3);
plot3([origin(1) zaxis(1)], [origin(2) zaxis(2)], [origin(3) zaxis(3)], 'g', ...
'LineWidth', 3);
text(ax, 2.2, 1.7, 0, 'A');
xlabel('x-ekseni');
ylabel('y-ekseni');
zlabel('z-ekseni');
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/280051/image.png)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Annotations 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!