Effacer les filtres
Effacer les filtres

Plotting with arrays, no graph displayed

1 vue (au cours des 30 derniers jours)
Grace
Grace le 12 Mar 2023
Commenté : Star Strider le 12 Mar 2023
x = [6000,9375];
y = 10;
plot(x,y,'red')
title('x by y')
xlabel('x')
ylabel('y')

Réponse acceptée

Star Strider
Star Strider le 12 Mar 2023
Plotting one point requres a marker, and plotting a line requires at least two vectors of the same size.
Two options, depending on the result you want —
x = [6000,9375];
y = 10;
figure
plot(x,y,'pr')
title('x by y')
xlabel('x')
ylabel('y')
x = [6000,9375];
y = 10*ones(size(x));
figure
plot(x,y,'red')
title('x by y')
xlabel('x')
ylabel('y')
And of course, you can plot both markers and lines of various kinds connecting them.
.
  2 commentaires
Grace
Grace le 12 Mar 2023
Thank for your answer, it is very helpful
Star Strider
Star Strider le 12 Mar 2023
As always, my pleasure!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Graph and Network Algorithms dans Help Center et File Exchange

Produits


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by