フィルターのクリア

How do I fill the image completely into the chart in App Designer?

4 ビュー (過去 30 日間)
besaret koçak
besaret koçak 2023 年 10 月 18 日
編集済み: DGM 2023 年 10 月 24 日
When I show the image on the chart, there are gaps in the right and bottom parts of the chart. How can I close these gaps?
  4 件のコメント
Dyuman Joshi
Dyuman Joshi 2023 年 10 月 22 日
移動済み: Dyuman Joshi 2023 年 10 月 23 日
I will need more information to provide a working suggestion then.
Can you share the code you are working with?
DGM
DGM 2023 年 10 月 24 日
編集済み: DGM 2023 年 10 月 24 日
Check that the XData and YData properties of the image object correspond to the XLim and YLim properties of the axes object. It looks like your axes are set to a fixed 300x250 and your image is smaller.

サインインしてコメントする。

回答 (1 件)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2023 年 10 月 23 日
One possible solution for your plotted data without the white areas at the bottom and on the righthand side is exaplained via this simple demo example.
P =peaks();
figure(1)
imagesc(P) % Good data is plotted
% Let's make some changes to the data P.
% Add some data points intentionally:
P(end:end+10, :)=255;
P(:,end:end+10) =255;
figure(2)
imagesc(P) % Yellowish area is added
% xlim([0, 60])
% ylim([0, 60])
axis tight
% Let's remove yellowish area: SOLUTION
P_ok = P;
P_ok(end-10:end, :)=[];
P_ok(:,end-10:end, :)=[];
figure(3)
imagesc(P_ok) % Back to the original data

カテゴリ

Help Center および File ExchangeGraphics Object Properties についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by