How to get system date and time into simulink?
79 ビュー (過去 30 日間)
古いコメントを表示
Is there a way to get the system date and time (not simulation time) into simulink?
2 件のコメント
採用された回答
TAB
2012 年 2 月 28 日
Use below code in embedded matlab function block. It will give the date and time components as separate output.
function [Y, M, D, H, MN, S] = fcn()
eml.extrinsic('now');
eml.extrinsic('datevec');
Y = 0;
M = 0;
D = 0;
H = 0;
MN = 0;
S = 0;
[Y, M, D, H, MN, S] = datevec(now);
end
4 件のコメント
その他の回答 (4 件)
Rick Rosson
2012 年 2 月 28 日
A slightly simpler version:
function [Y, M, D, H, MN, S] = sysClock()
coder.extrinsic('clock');
Y = 0;
M = 0;
D = 0;
H = 0;
MN = 0;
S = 0;
[Y, M, D, H, MN, S] = clock;
end
1 件のコメント
Rick Rosson
2012 年 2 月 28 日
5 件のコメント
Walter Roberson
2016 年 3 月 7 日
There is no way to fetch only the time without the date. The sysClock routine that Rick showed above can be modified to discard the date portions and return only the time components.
Kareem Abdelgawad
2014 年 11 月 24 日
I tried to use it under 'Real-Time Windows Target', but it doesn't work. Any ideas how to read system time under 'Real-Time Windows Target'?
2 件のコメント
shu
2015 年 1 月 22 日
Me too. With the error of "The extrinsic function 'clock' is not available for standalone code generation. It must be eliminated for stand-alone code to be generated."
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!