Loading saved colormap for use

조회 수: 23 (최근 30일)
Ishaan Chauhan
Ishaan Chauhan 2021년 2월 16일
댓글: Walter Roberson 2021년 12월 2일
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);

채택된 답변

Walter Roberson
Walter Roberson 2021년 2월 16일
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
Autumn P
Autumn P 2021년 12월 2일
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 2021년 12월 2일
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.)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Color and Styling에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by