Effacer les filtres
Effacer les filtres

plotting a point in 3D

3 vues (au cours des 30 derniers jours)
Hassan Bosha
Hassan Bosha le 5 Avr 2020
Commenté : Ameer Hamza le 8 Déc 2020
How i can i plot the New_P in 3D
i'm using robotic toolbox peter corke
i should use trplot() function but it's not working
P = transpose([2,3,4,0]);
New_P = trotx(45) * P

Réponse acceptée

Ameer Hamza
Ameer Hamza le 5 Avr 2020
You can draw this point using plot3()
P = transpose([2,3,4,0]);
New_P = trotx(45) * P;
plot3(New_P(1), New_P(2), New_P(3), '+');
  2 commentaires
Xinmeng Wang
Xinmeng Wang le 8 Déc 2020
How to make the '+' symbol larger?
Ameer Hamza
Ameer Hamza le 8 Déc 2020
You can specify the marker size like this
plot3(New_P(1), New_P(2), New_P(3), '+', 'MarkerSize', 10);

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Scatter Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by