colormaplist
📝 Syntaxe
📤 Argument de sortie
📄 Description
💡 Exemple
f = figure('Position', [100, 100, 600, 400], 'Resize', 'off');
ax = axes('Position', [0.1, 0.2, 0.6, 0.7]);
surf(ax, peaks);
cmaps = colormaplist;
listbox = uicontrol('Style', 'listbox', 'Position', [450, 100, 100, 200], 'String', cmaps);
listbox.Callback = @(src, void) colormap(ax, cmaps(src.Value));
🔗 Voir aussi
🕔 Historique
Version
📄 Description
Last updated