colour specification for gray colour

I have a line taken fron wavelet3d demo
hiso = patch(isosurface(Ds,5),'FaceColor','k','EdgeColor','none');
k gives black colour,but i need gray colour instead of black,please tell the colour code for gray colour

 채택된 답변

Image Analyst
Image Analyst 2012년 5월 8일

2 개 추천

Use a 1 by 3 array of numbers in the range 0-1, for example:
hiso = patch(isosurface(Ds,5),'FaceColor',[0.5 0.5 0.5],'EdgeColor','none');

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Structures에 대해 자세히 알아보기

질문:

2012년 5월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by