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

조회 수: 5 (최근 30일)
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
Walter Roberson
Walter Roberson 2013년 11월 26일
Consider changing your approach to use scatter() with a color matrix.
Elisa
Elisa 2013년 11월 26일
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

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

카테고리

Help CenterFile Exchange에서 Scatter Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by