矩阵图"年龄"



这里有一个问题要问"Matlab中记录较少的部分的专家":有没有一种(未记录的?)方法来确定一个数字已经开放了多长时间(即图形的"年龄")?

figure; spy;
myfig=gcf;
age=get_age() %shoud output age of figure in some format

您可以使用以下机制:

首先,创建一个小型 Matlab 函数,如下所示,该函数将CreationTime属性附加到图形:

function setCreationTime(hFig,varargin)
hProp = addprop(hFig,'CreationTime');
hFig.CreationTime = now;
hProp.SetAccess = 'private'; %make property read-only after setting its initial value
hProp = addprop(hFig,'Age');
hProp.GetMethod = @(h,e) etime(datevec(hFig.CreationTime), clock); %compute on-the-fly
hProp.SetAccess = 'private'; %make property read-only
end

现在将此函数指定为所有新图形的默认CreateFcn回调函数,从现在开始:

set(0,'DefaultFigureCreateFcn',@setCreationTime)

就是这样 - 你完成了!

例如:

>> newFig = figure;
>> newFig.CreationTime
ans =
737096.613706748
>> ageInDays = now - newFig.CreationTime
ageInDays = 
0.01625078368466347
>> ageDuration = duration(ageInDays*24,0,0)
ageDuration = 
duration
00:23:24
>> ageString = datestr(ageInDays, 'HH:MM:SS.FFF')
ageString = 
'00:23:24.068'
>> ageInSecs = newFig.Age
ageInSecs =
1404.067710354923808

据我所知,图形对象不会公开此类信息。甚至在其未记录的基础Java类中也没有。但我有一个想法,可能代表这个问题的一个很好的解决方法。

使用以下图形函数的重载:

figure(n) 查找 Number 属性等于 n 的图形, 并使其成为当前数字。如果不存在数字 属性值,MATLAB® 创建一个新图形并设置其编号 属性为 n。

为了给每个现有图形分配一个"唯一标识符",并将这些标识符与表示创建时间的datenum值相关联:

% Initialize the lookup table somewhere in your code:
lookup_table = zeros(0,2);
% Together with a variable that stores the next unique identifier to be assigned:
next_id = 1;
% When you need to instantiate a new figure...
% 1) Retrieve the current datetime:
cdate = now();
% 2) Update the lookup table:
lookup_table = [lookup_table; next_id cdate];
% 3) Initialize the new figure:
figure(next_id);
% 4) Increment the next unique identifier:
next_id = next_id + 1;

然后,查找表的每一行都将包含一个唯一的图形标识符及其各自的创建日期。

其他一切都很容易处理。当您想查询数字正常运行时间时...在查找表中查找其唯一标识符,并将当前时间(使用now()命令获取)减去创建时间。我建议您为您创建的每个图形定义一个CloseRequestFcn手柄,以便在关闭图形时,您可以更新lookup_table并将其删除。可以使用其Number属性检索分配给特定图形的标识符。这是一个完整的工作实现:

global lookup_table;
global next_id;
lookup_table = zeros(0,2);
next_id = 1;
f1 = create_figure();
f2 = create_figure();
pause(10);
f1_ut = get_figure_uptime(f1)
f2_ut = get_figure_uptime(f2)
function f = create_figure()
global lookup_table;
global next_id;
cdate = now();
f = figure(next_id);
f.CloseRequestFcn = @update_lookup_table; 
lookup_table = [lookup_table; next_id cdate];
next_id = next_id + 1;
end
function ut = get_figure_uptime(f)
global lookup_table;
tn = now();
tc = lookup_table(lookup_table(:,1) == f.Number,2);
if (isempty(tc))
ut = -1;
else
ut = etime(datevec(tn),datevec(tc));
end
end
function update_lookup_table(f,~)
global lookup_table;
lookup_table(lookup_table(:,1) == f.Number,:) = [];
delete(f);
end

或者,正如您在注释中建议的那样,您可以为您创建的每个图形添加一个属性,其中可以存储其创建时间。它更直接,无需处理查找表。为此,只需使用 addprop functon,如下所示:

cdate = now();
f = figure();
addprop(f,'CreationTime');
f.CreationTime = cdate;

参考此链接 您的问题的答案可能是此代码(这将适用于 MATLAB R2014b 及更高版本)。我用R2015a进行了测试。

figure; spy;
my_fig=groot;
cnt = 0;
pause(0.05)
while ~isempty(my_fig.Children)
cnt=cnt+1
pause(0.01)
end

这里cnt值将取决于时间,窗口在关闭之前存在。 注意:

  1. 可以减少暂停的参数值,在计算时间时,要考虑暂停时间
  2. 可以使用系统时钟时间代替计数器方法的cnt变量。

相关内容

  • 没有找到相关文章

最新更新