Borrar filtros
Borrar filtros

Change bar graph color by sign

5 visualizaciones (últimos 30 días)
Lutrinae
Lutrinae el 10 de Nov. de 2020
Comentada: Lutrinae el 16 de Nov. de 2020
I have a 502x2 column matrix made up of B = [datenum, data]. There are positive nad negative data values, and I want to make all of the positive values red and all of the negative values blue, similar to the figure midway down this page: https://niwa.co.nz/climate/information-and-resources/southern-annular-mode
My code so far is just:
bar(B(:,1), B(:,2))
Is there a straightforward way to do this?
Thank you!

Respuesta aceptada

Karthik Ravishankar
Karthik Ravishankar el 10 de Nov. de 2020
bar(B(B(:,2)>=0,1), B(B(:,2)>=0,2),'FaceColor','b')
hold on
bar(B(B(:,2)<0,1), B(B(:,2)<0,2),'FaceColor','r')

Más respuestas (1)

David Hill
David Hill el 10 de Nov. de 2020
x=B(:,1)';
y=B(:,1)';
b=bar(x,y,'r');
b.FaceColor='Flat';
b.CData(y<0,:)=repmat([0 0 1],nnz(y<0),1);

Categorías

Más información sobre Bar Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by