English 中文(简体)
在目标-c/可可库中有哪些标志性功能/方法?
原标题:
  • 时间:2009-05-21 08:55:25
  •  标签:

我曾尝试寻找日志+目标-c,但我得到的是教师的数学测试页,或解释日志是什么;)

我只想进行一些测量,如83912.41234,其他测量为32.9232。 我需要将这一巨大范围缩小到0到100之间,3,94232人至少是2人,其中83912.41234人接近100人。 因此,我认为,我的朋友们将发挥标志作用。

UPDATE: I ve came across the math.h file through "Open Quickly" (very nice command in Xcode: SHIFT + CMD + D), and there, big surprise:

extern double log ( double );
extern float logf ( float );

extern double log10 ( double );
extern float log10f ( float );

extern double log2 ( double );
extern float log2f ( float );

extern double log1p ( double );
extern float log1pf ( float );

extern double logb ( double );
extern float logbf ( float );

但是:没有案文,没有评论。 我不这样说。 因此,有些描述是好的,即,对什么情况,曲线如何看待,等等,有什么样的标志?

问题回答

此外,还带有任意基础的标志:

float logx(float value, float base) 
{
   return log10f(value) / log10f(base);
}

数学。 http://en.wikipedia.org/wiki/Math.h"rel=“nofollow noreferer” 网页上有一些文件。

贬低价值观的另一个办法是使你的价值观直线。 例如:

权责分界线

y = mx + c
y =  squished  value.
x = The value you want to squish
m = Gradient of the line
c = intercept on the y axis

2. 快速计算贵方的数值如下:

y = 1.17e-3 x + 1.96

希望这一帮助。

如何gra取一本关于C标准图书馆功能的书?

Otherwise, you can try man pages: man 3 logf, for example





相关问题
热门标签