jet

Jet colormap array.

📝 Syntax

  • c = jet

  • c = jet(m)

📥 Input argument

  • m - a scalar integer value: Number of colors (256 as default value).

📤 Output argument

  • c - Jet colormap array.

📄 Description

jet returns the colormap with jet colors.

💡 Example

f = figure();
surf(peaks);
colormap('jet');

🔗 See also

colormap.

🕔 History

Version
📄 Description

1.0.0

initial version

Last updated

Was this helpful?