这个标准化函数有具体的名称吗?
我想编写一个标准化函数,它将接受一个有符号整数并将其标准化为 -1 到 +1 之间的双精度值。这种类型的函数是否有一个特殊的名称,或者是人们通常所说的 Normalize()
?
另外,iPhone 是否有一个原生功能可以做到这一点?
I want to write a normalization function that will take a signed integer and normalize it to a double between -1 to +1. Is there a special name for this type of function, or is Normalize()
what people normally call it?
Also, is there a native iPhone function that does this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这确实称为标准化。它不需要任何函数,因为所需的只是将其缩放到最大值并将其裁剪到范围内。
It is indeed called normalization. There's no function needed for it since all that's required is to scale it by the maximum and clip it to the range.