MATLAB: How to make this pie chart

MATLABplotting

Hey all, I want to know is possible to have a pie chart with 5 pies so that I can change the color of each pie that I want? Just like this:
I don't have any data sets, in this case, I just want pie chart with 5 equal parts with ability to change colors.
Please let me know is this possible to do this in Matlab?
Best Regards.

Best Answer

One option:
p = pie(ones(1,5)); % create a pie chart with 5 equal slices
t = p(2:2:end); % get the handles to the text labels
p = p(1:2:end); % get the handles to the patches
delete(t) % delete the text labels
p(2).FaceColor = 'g'; % change the color of the second patch to green