このページの内容は最新ではありません。最新版の英語を参照するには、ここをクリックします。
pink
pink カラーマップ配列
説明
例
カラーマップの反転
表面をプロットし、pink カラーマップを割り当てます。
surf(peaks);
colormap('pink');
pink カラーマップ配列を取得し、順序を反転します。次に、変更したカラーマップを表面に適用します。
c = pink; c = flipud(c); colormap(c);
pink カラーマップのダウンサンプリング
20 色のみを含む、pink カラーマップのダウンサンプリング バージョンを取得します。次に、そのカラーマップと内挿によるシェーディングを適用して、放物面の等高線を表示します。
c = pink(20);
[X,Y] = meshgrid(-10:1:10);
Z = X.^2 + Y.^2;
surf(X,Y,Z);
colormap(c);
shading interp;
入力引数
m
— 色数
256
(既定値) | 非負の整数
色数。非負の整数として指定します。m
の既定値は現在の Figure のカラーマップの色の数です。Figure が存在しない場合、既定値は 256
です。
データ型: single
| double
バージョン履歴
R2006a より前に導入R2019b: カラーマップは既定で 256 色
R2019b 以降、カラーマップは既定で 256 色です。
R2019a およびそれ以前のリリースでの既定サイズは 64 です。コードが 64 色のカラーマップに依存する場合は、Figure、座標軸、またはチャートのカラーマップを設定するときに色数を指定します。たとえば、colormap(pink(64))
は、Figure のカラーマップを 64 色の pink
カラーマップに設定します。
あるいは、MATLAB® セッション内のすべての Figure について、既定のカラーマップを変更できます。
set(groot,'defaultFigureColormap',pink(64))
MATLAB コマンド
次の MATLAB コマンドに対応するリンクがクリックされました。
コマンドを MATLAB コマンド ウィンドウに入力して実行してください。Web ブラウザーは MATLAB コマンドをサポートしていません。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)