How do I create a colormap for a flat plane?

I am creating a flat plane, I want the color of the plane to be a gradient. I tried using the colormap copper but it keeps it black because it is flat. How can I adjust the color?
[x,y] = meshgrid(1:1250,1:760);
z = zeros(size(x));
colormap('copper')
surf(x,y,z-1)

2 件のコメント

Geoff Hayes
Geoff Hayes 2019 年 9 月 20 日
Jossie - what do you expect the output to look like? Can you us how you expect the gradient to be applied to your 2D data?
Jossie
Jossie 2019 年 9 月 20 日
ChangeDirectionOfColorTransitionsExample_03.png
Not necesarly this color scheme, but I want my flat plane to look something like this. Go from a dark color to a lighter one (without the grid). As I mention my plane is flat which does now allow me to variate the color.

サインインしてコメントする。

 採用された回答

Bjorn Gustavsson
Bjorn Gustavsson 2019 年 9 月 20 日

0 投票

Use something like this:
surf(x,y,z-1,x+0.5*y),shading flat
You can use whichever linear combination of x and y to have your gradient in your desired direction.
HTH

1 件のコメント

Jossie
Jossie 2019 年 9 月 20 日
Exactly what I wanted! Thank you so much!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeColor and Styling についてさらに検索

質問済み:

2019 年 9 月 20 日

コメント済み:

2019 年 9 月 20 日

Community Treasure Hunt

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

Start Hunting!

Translated by