GUIでGIF画像を表示しようとしていますが、機能しません。偽の画像(GIFではなく、さまざまな色)が表示されます。
File Exchangeに「アニメーションGIF」があることは知っていますが、他の何かが好きです:/
次のコードを試しましたが、機能しません:
function [] = GUI_400()
hFig = figure('Name','Simulation Plot Window','Menubar','none', 'Resize','off', 'WindowStyle','modal', 'Position',[300 300 1150 600]);
movegui(hFig, 'center');
hAxes = axes('Parent',hFig,'Units','pixels','Position',[362 242 424 359]); %# so the position is easy to define
image(imread('loading.gif', 'gif'),'Parent',hAxes); %# Plot the image
set(hAxes,'Visible','off', 'handlevisibility', 'off'); %# Turn the axes visibility off
end
これは私のgif画像です: http ://desmond.imageshack.us/Himg822/scaled.php?server = 822&filename = loadingoz.gif&res = landing
ありがとうございました!