-
-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
datenum does not support some string format #36
Comments
Nelson-numerical-software
added a commit
that referenced
this issue
Sep 6, 2024
Nelson-numerical-software
added a commit
that referenced
this issue
Sep 6, 2024
Nelson-numerical-software
added a commit
that referenced
this issue
Sep 6, 2024
Nelson-numerical-software
added a commit
that referenced
this issue
Sep 13, 2024
Nelson-numerical-software
added a commit
that referenced
this issue
Sep 13, 2024
Nelson-numerical-software
added a commit
that referenced
this issue
Sep 13, 2024
Nelson-numerical-software
added a commit
that referenced
this issue
Sep 13, 2024
Nelson-numerical-software
added a commit
that referenced
this issue
Sep 13, 2024
Nelson-numerical-software
added a commit
that referenced
this issue
Sep 13, 2024
Nelson-numerical-software
added a commit
that referenced
this issue
Sep 13, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
dv = datevec(datenum('10-Mar-2010 16:48:17'));
REF = [2010 3 10 16 48 17];
assert_isequal(dv, REF);
dv = datevec(datenum('Mar.10,2010'));
REF = [2010 3 10 0 0 0];
assert_isequal(dv, REF);
The text was updated successfully, but these errors were encountered: