How to use gplot for co-ordinates
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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
0 Commenti
Risposta accettata
Dishant Arora
il 2 Set 2013
gplot(eye(length(x)) , [x' , y'], '*');
% x and y are row vectors containing co-ordinates.
0 Commenti
Più risposte (1)
Brian
il 2 Set 2013
6 Commenti
Dishant Arora
il 2 Set 2013
use ones matrix instead of identity matrix as argument in gplot.
gplot(ones(length(x)), [x , y])
Vedere anche
Categorie
Scopri di più su Data Exploration in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!