Azzera filtri
Azzera filtri

How to validate that one datetime is greater than another

5 visualizzazioni (ultimi 30 giorni)
My class takes two datetimes startTime and endTime as input arguments. I would like to use argument validation to force endTime to be later than startTime, but mustBeGreaterThan does not accept datetimes.

Risposta accettata

Stephen23
Stephen23 il 17 Mag 2024
Modificato: Stephen23 il 17 Mag 2024
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)
okay!
myfun(B,A)
Error using solution>myfun (line 9)
Invalid argument at position 2. End time must be after start time.
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 Commenti
Stephen23
Stephen23 il 17 Mag 2024
Modificato: Stephen23 il 17 Mag 2024
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)
okay!
obj.myMethod(B,A)
Error using myClass/myMethod (line 7)
Invalid argument at position 3. End time must be after start time.
Rich006
Rich006 il 20 Mag 2024
That still isn't what I was trying to do, because it requires running a method after construction. But I did use your suggestion of standalone validation functions. This allows me to create my own mustBeLater. And that answers my question!
classdef myClass
properties
startTime
endTime
end
methods
function obj = myClass(s,e)
arguments
s datetime
e datetime {mustBeLater(e,s)}
end
obj.startTime = s;
obj.endTime = e;
disp('Success!')
end
end
end
function mustBeLater(laterTime,earlierTime)
if laterTime < earlierTime
error("End time must be after start time.")
end
end
>> A = datetime('yesterday');
>> B = datetime('now');
>> obj = myClass(A,B);
Success!
>> obj = myClass(B,A);
Error using myClass
obj = myClass(B,A);
Invalid argument at position 2. End time must be after start time.
(sorry, not sure how to format the inline command inputs/outputs)

Accedi per commentare.

Più risposte (2)

Joshua Levin Kurniawan
Joshua Levin Kurniawan il 17 Mag 2024
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
  1 Commento
Rich006
Rich006 il 17 Mag 2024
I'm trying to do this in argument validation, which is why I was trying to use mustBeGreaterThan.

Accedi per commentare.


Fangjun Jiang
Fangjun Jiang il 17 Mag 2024
Modificato: Fangjun Jiang il 17 Mag 2024
It seems fine in R2022b, R2023b and R2024a
a=now;
b=now;
mustBeGreaterThan(b,a)
mustBeGreaterThan(a,b)
Value must be greater than 739389.6563.
  2 Commenti
Rich006
Rich006 il 17 Mag 2024
It works with numbers, but I'm trying to compare datetime objects.
Fangjun Jiang
Fangjun Jiang il 17 Mag 2024
Modificato: Fangjun Jiang il 17 Mag 2024
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))
Value must be greater than 739389.6782.

Accedi per commentare.

Categorie

Scopri di più su Dates and Time in Help Center e File Exchange

Prodotti


Release

R2023b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by