Mathematica 中的 DateString 有问题

发布于 2024-10-22 02:58:43 字数 270 浏览 2 评论 0原文

如果我输入

DateString[{2011, 2, 29, 0, 0, 0}, {"DayName"}]

它会给出 "Tuesday"

另外,

DateString[{2011, 2, 29, 0, 0, 0}, {"DayName"}]

DateString[{2011, 3, 1, 0, 0, 0} , {"DayName"}]

If I type

DateString[{2011, 2, 29, 0, 0, 0}, {"DayName"}]

It gives "Tuesday".

And also,

DateString[{2011, 2, 29, 0, 0, 0}, {"DayName"}]

DateString[{2011, 3, 1, 0, 0, 0}, {"DayName"}]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

还在原地等你 2024-10-29 02:58:43
Needs["Calendar`"];
myDay[x_List] := DateString[x, {"DayName"}] /; DateQ[x]  

myDay[{2000, 1, 1}]
->"Saturday"

myDay[{2000, 13, 13}]
->myDay[{2000, 13, 13}]  

当然,如果您愿意,您可以抛出一条消息(或 Abort[] 或其他任何内容):

Needs["Calendar`"];
Clear@myDay;
myDay[x_] /; If[DateQ[x], True, Message[myDay::nodate, x]; False] := 
                                                       DateString[x, {"DayName"}]
myDay::nodate = "The argument `1` is not a valid date.";
Needs["Calendar`"];
myDay[x_List] := DateString[x, {"DayName"}] /; DateQ[x]  

myDay[{2000, 1, 1}]
->"Saturday"

myDay[{2000, 13, 13}]
->myDay[{2000, 13, 13}]  

Of course you may throw a message (or Abort[], or whatever) if you want to :

Needs["Calendar`"];
Clear@myDay;
myDay[x_] /; If[DateQ[x], True, Message[myDay::nodate, x]; False] := 
                                                       DateString[x, {"DayName"}]
myDay::nodate = "The argument `1` is not a valid date.";
·深蓝 2024-10-29 02:58:43

在我看来,这像是正确的行为。 DateString 的文档说:“超出正常范围的 m、d、h、m、s 的值会适当减少。”这就是所发生的事情:今年并没有真正的 2 月 29 日,但如果有的话,那也是实际上的 3 月 1 日,这确实是星期二。

This looks to me like correct behaviour. The documentation for DateString says: "Values of m, d, h, m, s outside their normal ranges are appropriately reduced." which is just what's happened: there isn't really a 29th of February this year, but if there were it would be the same day that's actually the 1st of March, which is indeed a Tuesday.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文