我有一個存儲圖形句柄的類。隨着新的Matlab句柄圖形hg2我得到一個「處理刪除圖」的錯誤。 classdef mytestclass
properties
hFig = figure
end
end
只創建一個類的實例工作正常,我得到一個有效的數字句柄a.hFig。 a = mytestclass % this will open the figure
如果我有一個直方圖邊和向量計數向量,是否可以使用它直接生成直方圖?人爲地作爲 data = [];
for i = 1:numel(counts)
% This should be optimised by pre-allocating the data array,
% but this is only provided as an example.
data =