0

私の imshow と imagesc に問題があるようです。

c = [1, 2; 3, 4];
imagesc(c);

結果:

    Error using setdiff
    Too many input arguments.

    Error in clo (line 49)
                kids_to_delete = setdiff(findall(obj,'serializable','on','-depth',1),obj,'legacy');

    Error in cla (line 29)
    clo(ax, extra{:});

    Error in newplot>ObserveAxesNextPlot (line 125)
        cla(ax, 'reset',hsave);

    Error in newplot (line 74)
    ax = ObserveAxesNextPlot(ax, hsave);

    Error in imagesc (line 19)
        hh = image(varargin{1},'CDataMapping','scaled');

私がimshowを試したとき:

c = [1, 2; 3, 4];
imshow(c);

結果:

 Error using setdiff
    Too many input arguments.

Error in clo (line 49)
            kids_to_delete = setdiff(findall(obj,'serializable','on','-depth',1),obj,'legacy');

Error in cla (line 29)
clo(ax, extra{:});

Error in newplot>ObserveAxesNextPlot (line 125)
    cla(ax, 'reset',hsave);

Error in newplot (line 74)
ax = ObserveAxesNextPlot(ax, hsave);

Error in basicImageDisplay (line 24)
    hh = image(cdata, ...

Error in imshow (line 266)
  hh = basicImageDisplay(fig_handle,ax_handle,...

現在、win-64bit の MatLab R2013b を使用していますが、この問題が何度か発生したようで、Matlab を再インストールすると解決できます。

4

0 に答える 0