How to validate that one datetime is greater than another
15 次查看(过去 30 天)
显示 更早的评论
采纳的回答
Stephen23
2024-5-17
编辑:Stephen23
2024-5-17
Do NOT convert to low-precision serial date numbers! Avoid deprecated DATENUM !
Argument validation lets you define your own validation function, which makes your task easy (and you get to write exactly the informative error messages that you want to see displayed):
A = datetime(1994,1,1);
B = datetime(2024,1,1);
myfun(A,B)
myfun(B,A)
function myfun(startTime,endTime)
arguments
startTime (1,1) {idt}
endTime (1,1) {idt,ilt(startTime,endTime)}
end
disp('okay!')
end
function idt(x)
assert(isdatetime(x),'Input must be a DATETIME.')
end
function ilt(s,e)
assert(s<e,'End time must be after start time.')
end
5 个评论
Stephen23
2024-5-17
编辑:Stephen23
2024-5-17
Some changes:
- move the validation functions to local functions (rather than methods),
- do not use the same name for the method and the class,
- define the class object as a method input. This requirement is explained here:
After that (see attached file), it works as expected:
A = datetime(1994,1,1);
B = datetime(2024,1,1);
obj = myClass();
obj.myMethod(A,B)
obj.myMethod(B,A)
更多回答(2 个)
Joshua Levin Kurniawan
2024-5-17
You can use traditional logical operator for datatime. Operator "<", if true, means that the first datatime will occurs sooner than the next variable. In this case, just use the following code
if startTime < endTime
disp("The data is valid");
else
disp("The data is invalid");
end
For further information, you can check out the following page
Fangjun Jiang
2024-5-17
编辑:Fangjun Jiang
2024-5-17
It seems fine in R2022b, R2023b and R2024a
a=now;
b=now;
mustBeGreaterThan(b,a)
mustBeGreaterThan(a,b)
2 个评论
Fangjun Jiang
2024-5-17
编辑:Fangjun Jiang
2024-5-17
okay, I thought now() returns a datetime object. It was not. You can convert it to datenum()
a=datetime('now');
b=datetime('now');
mustBeGreaterThan(datenum(b),datenum(a))
mustBeGreaterThan(datenum(a),datenum(b))
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Dates and Time 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!