App Designer change colormap

38 visualizaciones (últimos 30 días)
Lev Mihailov
Lev Mihailov el 18 de Mayo de 2022
Respondida: DGM el 18 de Mayo de 2022
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

Respuesta aceptada

DGM
DGM el 18 de Mayo de 2022
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.

Más respuestas (0)

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by