Colormaps_MATLAB
A set of colormaps (in csv format) that can be used in MATLAB. Colormaps such as 'plasma', and 'inferno' are included which are not currently available in MATLAB's builtin colormaps.
The csv files contain rgb values of the colormaps.
Use
Copy the csv data file of the colormap in local folder. In the MATLAB code, import the csv file in a matrix. Then use colormap() command after your plot command. Example:
c_map = csvread('inferno_colormap.csv');
... % your code
...
contourf(....) % plotting, contourf, surf etc.
colormap(c_map)