setting range on colorbar in appliction designer

2 ビュー (過去 30 日間)
JM
JM 2024 年 8 月 19 日
回答済み: Voss 2024 年 8 月 19 日
I would like to be able to set the range of a color bar in the application designer
The line below is causing an error.
Im not sure how to link it to the object (whether app.UIAxes or c).
function openfile(app, event)
[file,path]=uigetfile({'*.jpg';'*.bmp';'*.gif';'*.tiff'}, 'Select file');
app.a= double(imread(file));
app.a= -(0.0316*app.a) +8.3;
imagesc(app.a,'Parent',app.UIAxes);
maxval = max(max(app.a));
minval = min (min(app.a));
c = colorbar(app.UIAxes)
c.clim ([minval maxval]); <- causes error
end
thank you

採用された回答

Voss
Voss 2024 年 8 月 19 日
Replace
c.clim ([minval maxval]);% <- causes error
with
app.UIAxes.CLim = [minval maxval];

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeColorbar についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by