Borrar filtros
Borrar filtros

Loading saved colormap for use

30 visualizaciones (últimos 30 días)
Ishaan Chauhan
Ishaan Chauhan el 16 de Feb. de 2021
Comentada: Walter Roberson el 2 de Dic. de 2021
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);

Respuesta aceptada

Walter Roberson
Walter Roberson el 16 de Feb. de 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 comentarios
Autumn P
Autumn P el 2 de Dic. de 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 el 2 de Dic. de 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.)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Colormaps en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by