Label scatter data points.

2 visualizzazioni (ultimi 30 giorni)
dipak sanap
dipak sanap il 4 Dic 2015
Commentato: dipak sanap il 4 Dic 2015
I have a matrix C as follows;
1 3 0.454 54
3 4 0.478 0.356
7 8 4.564 1546
And I plot, scatter(C(:,3),C(:,4))
I want to label every data point as first two columns of matrix. Like, label (0.454,54) as 1 3, (0.478,0.356) as 3 4 and so on.

Risposte (1)

Walter Roberson
Walter Roberson il 4 Dic 2015
text( C(:,3),C(:,4), cellstr(str2num(C(:,1:2))) )
  3 Commenti
Walter Roberson
Walter Roberson il 4 Dic 2015
Sorry, I have been up all night ;-(
text( C(:,3),C(:,4), cellstr(num2str(C(:,1:2))) )
dipak sanap
dipak sanap il 4 Dic 2015
Hey thanks, it worked. And get some sleep.

Accedi per commentare.

Categorie

Scopri di più su Data Distribution Plots in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by