How can I add different background colours of different areas a 3d matrix avoiding overlay?

First of all, thanks a lot for reading...
I've a 3d matrix that I normally plot using plot3 with '.' (points instead of lines)
I would like to fill part of the same figure area with one colour and some other area with another colour (as a background), without covering the most important graph.
All the functions that I found seems to be really difficult for me to use and other doesn't work.
Please help me!!!
Thanks a lot in advance for any help provided!!!
example :
important_figure = [-60 -60 0; -60 -60 10; -60 -60 20; -60 -60 30; -60 -50 -10; -60 -50 0; -60 -50 10; -60 -50 20; -60 -50 30; -60 -40 -10;]
area1_to_highlight = important_figure(1:5,:)
area2_to_highlight = important_figure(6:end,:)

답변 (1개)

Walter Roberson
Walter Roberson 2013년 11월 25일
편집: Walter Roberson 2013년 11월 25일
One way: create an image() over the entire area. Set the colors of the various parts of the image as desired. Create an alpha area that is 1.0 in the places you want the background to be visible, and 0 in places you want the graph underneath to be visible. Set that alpha array as the AlphaData property of the image.
Warning: this will not work if you rotate the 3D image. image() objects have no thickness. You can texture map surfaces with transparent surfaces, but if you are rotating the plot you need to think more about what "background" means.

댓글 수: 3

Thanks Walter for your response,
Although, I do actually need to rotate the image unfortunately.
Imagine a spherical graph of data points. I need the area (let's call it region) that a group of points share to be identify by a colour, while other group of point sharing the same region are in another colour. Like in the globe we can identify countries but we can still see the points that locate cities.
thanks a lot
Consider changing your approach to use scatter() with a color matrix.
Thanks again Walter,
However, I still don't see how can can I use that. scatter() create a bubble plot, while I need to leave the data points displayed, as they are and filling the area that they share with a lighter colour.
thanks a lot

댓글을 달려면 로그인하십시오.

카테고리

질문:

2013년 11월 25일

댓글:

2013년 11월 26일

Community Treasure Hunt

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

Start Hunting!

Translated by