App Designer change colormap

37 次查看(过去 30 天)
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