Plot with dot and different colors
Mostra commenti meno recenti
I am using plot function where i need dots.Also I want to change colors?How can I do it.
plot(x,y,'.');
Above function plot the dots but how I change the dots color red or green,etc The following doesn't work:
plot(x,y,'.','r:');
Suggest any answer or solution..
1 Commento
Alexander Reina Garzon
il 17 Ott 2022
plot(x,y,'r.')
plot(x,y,'o')
plot(x,y,'m')
Risposta accettata
Più risposte (2)
Nadeem Tariq Beigh
il 8 Giu 2020
Modificato: Nadeem Tariq Beigh
il 8 Giu 2020
1 voto
plot(x,y,'ro');//To plot a red circle
plot(x,y,'r.);//To plot ared dot
Goutham Saravanan
il 21 Set 2021
0 voti
x = linspace(1*pi,100);
y =
;
plot(x,y,'ro');
xlabel('x')
ylabel('Likelihood ratio for the given conditions')
title('1.2/c')
Categorie
Scopri di più su Scatter Plots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!