如何在 MATLAB 中实现本福德定律
我想实施本福德定律的一个版本(http://en.wikipedia.org/wiki/本福德%27s_law) 基本上要求数字的第一位数字对分布进行分析。
1934---> 1
0.04 ---> 4
-56 ---> 5
在 MATLAB 中如何做到这一点?
I want to implement a version of Benford's law (http://en.wikipedia.org/wiki/Benford%27s_law)
that basically asks for the first digit of a number to do analysis on the distribution.
1934---> 1
0.04 ---> 4
-56 ---> 5
How do you do this in MATLAB?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
它适用于所有实数(极端情况请参阅 gnovice 的评论)
It works for all real numbers (see gnovice's comment for an extreme case)
有几种方法可以做到这一点...
使用 正则表达式:
使用ISMEMBER:
编辑:
对此主题的一些讨论已出现在 MathWorks 博客。那里提供了一些有趣的附加解决方案。提出的一个问题是矢量化解决方案,所以这是我提出的一个矢量化版本:
A few ways you can do this...
Using REGEXP:
Using ISMEMBER:
EDIT:
Some discussion of this topic has arisen on one of the MathWorks blogs. Some interesting additional solutions are provided there. One issue that was brought up was having vectorized solutions, so here's one vectorized version I came up with:
使用 log10 和 Floor 内置函数,
还返回数组中所有元素的第一个数字。
Using log10 and floor built in functions,
returns the first digit of all elements in an array as well.
让我添加另一个基于字符串的解决方案(也是矢量化的):
并在此处提到的情况下进行测试:
Let me add another string-based solution (vectorized as well):
and tested on the cases mentioned here: