How to use gplot for co-ordinates

1 vue (au cours des 30 derniers jours)
Brian
Brian le 2 Sep 2013
I very simply want to use gplot for two vectors (x and y), such that they create 5 co-ordinates.
How do I do this? (syntax-wise)
Thanks a lot

Réponse acceptée

Dishant Arora
Dishant Arora le 2 Sep 2013
gplot(eye(length(x)) , [x' , y'], '*');
% x and y are row vectors containing co-ordinates.

Plus de réponses (1)

Brian
Brian le 2 Sep 2013
It says "??? Index exceeds matrix dimensions."
Really don't know what I'm doing wrong.
Thanks for your help
  6 commentaires
Dishant Arora
Dishant Arora le 2 Sep 2013
use ones matrix instead of identity matrix as argument in gplot.
gplot(ones(length(x)), [x , y])
Brian
Brian le 2 Sep 2013
Thanks a lot, works perfect

Connectez-vous pour commenter.

Catégories

En savoir plus sur Data Exploration 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!

Translated by