Need help with Plots
Mostrar comentarios más antiguos
Hi everyone,
I am trying to plot a map. I was given a file with coastlines which I mapped using "load" and "plot". Now I am trying to add a set of values to the map using "pcolor" the issue is that when I try to plot it it looks like this: http://img267.imageshack.us/i/matlabb.png/
The plot on the left is my failed map, the black box being the plot on the right. I am trying to plot that values on the right onto the map but it doesn't look right =S.
Any suggestions on how I would go about this?
Respuesta aceptada
Más respuestas (1)
Matt Tearle
el 17 de Feb. de 2011
It's hard to tell exactly from the image, but it looks like maybe it's just the lines that make it look like a black box. Try turning them off:
h = pcolor(...);
set(h,'linestyle','none')
1 comentario
Andrew
el 17 de Feb. de 2011
Categorías
Más información sobre Orange en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!