How to plot values with different color with "if statement"
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hello,
I have a question. I have an .xlsx file with 3 columns. After that, I am making calculation between two first values. I would like to plot values x,y, depending on the value of the 3rd column (for example I would like to plot blue circle if 3rd column has 0 value and if 3rd column has 1 value I would like to plot red cirlce).
Could anyone help me?
0 Commenti
Risposte (2)
J. Alex Lee
il 7 Giu 2020
look at the documentation for the "scatter()" command. can you do what you want with that?
2 Commenti
J. Alex Lee
il 8 Giu 2020
did you read the documentation for scatter()?
If you don't have stats toolbox for Ameer's answer, you can achieve the same thing with scatter()
x = [0.5 0.2 0;
0.2 0.3 1;
0.6 0.2 0;
0.9 0.6 0;
0.2 0.4 0;
0.4 0.8 1;
0.7 0.9 1;
0.1 0.2 0];
colors = [1 0 0; % red for 0s
0 0 1]; % blue for 1s
scatter(x(:,1), x(:,2),[],x(:,3))
colormap(colors)
Ameer Hamza
il 8 Giu 2020
Look at gscatter function(): https://www.mathworks.com/help/releases/R2020a/stats/gscatter.html. For example
x = [0.5 0.2 0;
0.2 0.3 1;
0.6 0.2 0;
0.9 0.6 0;
0.2 0.4 0;
0.4 0.8 1;
0.7 0.9 1;
0.1 0.2 0];
colors = [1 0 0; % red for 0s
0 0 1]; % blue for 1s
gscatter(x(:,1), x(:,2), x(:,3), colors)
0 Commenti
Vedere anche
Categorie
Scopri di più su Annotations 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!