Plot a line, changing origin

3 vues (au cours des 30 derniers jours)
Adrian
Adrian le 16 Sep 2013
Hello,
I have 2 vectors containing x and y-coordinates. Now I want to plot these points and connect them to a line. How can I do this without starting from (0,0)? Actually the line always begins at (0,0) although this point is not content of the vectors!

Réponse acceptée

Simon
Simon le 16 Sep 2013
Hi!
x = [1 2 3];
y = [2 4 9];
plot(x,y);
This doesn't start at (0,0). If you have problems please post your code.
  1 commentaire
Adrian
Adrian le 18 Sep 2013
You are right, I did an other (stupid) mistake!
Thank You

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

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

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by