Clear Filters
Clear Filters

Loading saved colormap for use

30 views (last 30 days)
How do i save and open a colormap for use
I have a custom colormap saved as a .mat file in the same folder as my script, but I'm unable to get the script to call upon the colormap file for use
I'd like to be able to open the script on a different computer, and have the colormap load in for use, without having to set a custom colormap each time.
I've tried combinations of the code below, to no avail
load ('topocmap.mat')
colormap= ('topocmap.mat');
cmap=colormap(gca);

Accepted Answer

Walter Roberson
Walter Roberson on 16 Feb 2021
You assigned a value to a variable named colormap but then you expect to be able to call colormap() as a function.
colormap() does not accept the name of a '.mat' file. If you pass colormap a name, it has to be the name of a function (not a .mat file.)
load() the saved data from the .mat file, and colormap() it into effect. For example,
tdata = load('topocmap.mat'); %load into structure
colormap(tdata.topocmap) %activates it
assuming that the name of the variable stored in the file is topocmap
  3 Comments
Autumn P
Autumn P on 2 Dec 2021
I am new to matlab and I am wondering how I can then use the loaded in color map when generating a figure?
Walter Roberson
Walter Roberson on 2 Dec 2021
Yes, if you were to make a colormap() call like that, it would affect the current "traditional" figure. If you are using App Designer then you should add a figure or axes handle to the colormap() call so it gets applied against the uifigure instead of opening a new traditional figure. (It is a good idea to pass in the parent figure or axes handle even for traditional figures.)

Sign in to comment.

More Answers (0)

Categories

Find more on Colormaps in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!