vote up 1 vote down star

I'm trying to change the background color of a single subplot in a Matlab figure.

It's clearly feasible since the UI allows it, but I cannot find the function to automate it.

I've looked into whitebg, but it changes the color scheme of the whole figure, not just the current subplot.

(I'm using Matlab 6.1 by the way)

flag

I haven't used Matlab in years, I hope you get an answer! :o) – Andrew Oct 1 '08 at 13:52

4 Answers

vote up 8 vote down check

You can use the set command.

set(subplot(2,2,1),'Color','Red')

That will give you a red background in the subplot location 2,2,1.

link|flag
That's it! Thanks! – Kena Oct 1 '08 at 14:01
alternatively: ha=subplot(221); set(ha,'color','r'); – Azim Oct 3 '08 at 19:57
vote up 0 vote down

if i need color gray ,how to define ?

link|flag
1  
You should not post follow-up questions as an answer, better start a new question instead. The "Ask Question" button is in the top right. – sth Sep 22 at 13:04
As sth said, you should not ask questions as answers. You should ask them as a separate question, since this is a Q&A site and not a newsgroup thread. I'll answer your question here, but please delete this answer once you read it... If you want gray colors, replace the color string 'r' in my above answer with a 3 element RGB vector that has the same 3 values. For example [0 0 0] is black, [1 1 1] is white, and the midpoint gray between the two is [0.5 0.5 0.5]. – gnovice Sep 22 at 14:13
vote up 1 vote down

I know you mentioned that you are using MATLAB 6.1, but it bears mentioning that in the newer versions of MATLAB you can specify additional property-value pair arguments in the initial call to SUBPLOT, allowing for a more compact syntax:

subplot(2,2,1,'Color','r');  % Makes an axes with a red background in the
                             % first position of a 2-by-2 layout
link|flag
vote up 0 vote down

I've not used Matlab in several years, but I think it might well be the whitebg method called after the subplot declaration, similar to the way in which you would set a title.

subplot(3, 2, 4), hist(rand(50)), whitebg('y');
link|flag
Unfortunately no, that was my first guess but it changes the whole figure. – Kena Oct 1 '08 at 13:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.