App Designer change colormap

조회 수: 55 (최근 30일)
Lev Mihailov
Lev Mihailov 2022년 5월 18일
답변: DGM 2022년 5월 18일
I need to change the color map, but matlab gives me such a warning and creates an empty graph
Specify a UIAxes handle as first argument.
imagesc(app.UIAxes,app.a,app.b,app.c);% speedGPS
gray2 = flipud(colormap('gray'));
colormap(app.UIAxes,gray2)
title(app.UIAxes,'Time live server(i)');
ylabel(app.UIAxes,'temp, K');
xlabel(app.UIAxes,'time, h');
Thanks in advance

채택된 답변

DGM
DGM 2022년 5월 18일
I'm going to guess it's complaining about the missing handle on the gray2 line. If so, then do this:
gray2 = flipud(gray(256));
While it's possible, there isn't any need to call colormap() on that line. Since all you need is the colormap (the actual table of colors), just call the desired map generation function (i.e. gray()) with the desired table length. The result will be a simple numeric array, and doesn't attempt to interact with any graphics objects in the process.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by