问题标签 [uint16]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
decimal - 从单位到十进制
我通过 SPI 从 ADC 获取数据:我将数据保存到 uint16_t 类型的数组中,然后使用终端查看结果。
我怎样才能看到这个十进制而不是无符号整数的结果?
我需要知道我得到的值是否是我真正想要的。
我的代码在 C 中。
我就是这样打印的。
但我想在终端上看到十进制数字。
我什至有一个写函数来让 printf 工作:
马克
c - 将无符号整数(uint16_t)转换为字符串。标准 itoa base 10 给出负值
我需要将 uint16_t 值转换为字符串。我希望字符串是数字的十进制表示。
示例:uint16_t i=256 字符串:256
我尝试过,itoa(i,string, 10)
但是当i
值增加时开始打印负值。
我通过串行端口发送字符串。(UART)
有其他选择吗?
c - Simple program convert int16_t array to uint16_t
I have used the WinFilter Program to compute the FIR filter on C code but I got a issue:
The program only provide the 16 bits signed array and i need to that this vector be a unsigned int. So i am looking for a simple solution to relocated the array values to the next "values".
I think that one solution should be like this:
any hint?
swift - 如何在 Swift 3 中将 UInt16 转换为 UInt8?
我想将 UInt16 转换为 UInt8 数组,但收到以下错误消息:
'init' 不可用:使用 'withMemoryRebound(to:capacity:_)' 临时将内存视为另一种布局兼容类型。
编码:
string - 如何在 Arduino 中将字符串转换为 uint16_t?
字符串变量将包含一个十六进制,我们需要将其安全地放在uint16_t
?
例子:
请记住,我不需要在这里转换为十进制。
即我的要求是,unint16_t num = 0x11A0;
。我需要unint16_t
从十六进制转换为。
unint16_t
可以包含0x11A0
,但是我的问题是我无法从字符串变量中获取值并将其保存在unint16_t
.
c - C将uint16写入文件得到错误
我的操作系统是窗口,我想将我的数据写入一个 16 位的 pcm。这是我的代码:
当我调用它时,我在 fwrite 的地方得到了错误:“读取位置 0x 时发生访问冲突......”,我可以看到文件已成功创建,所以我不知道为什么会发生此错误.
c - 将 2 个 uint16_t 组合成 1 个 uint32_t
我有 2 个 uint16_t,我想组合成 1 个 32 位数:
我希望 var3 为 0000 0000 1111 1111 0000 0000 1111 1111 ... 所以十进制为 16711935 但我得到 255 (0000 0000 0000 0000 0000 0000 1111 1111)。
有任何想法吗?
谢谢
vb.net - 从 BinaryReader 读取 UInt16 时出错
为什么这行得通
消息框给我 1000 是正确的。然后我尝试使用这个
它给了我 831 这是不正确的。现在我尝试使用 Unicode 编码。有用。但我想使用 ASCII。为什么会这样,我做错了什么?
python - Python 3.4:将 ushort 转换为字节
我正在尝试将 ushort 转换为字节。但是,当我尝试这个时:
代替:
这是一个错误吗?或者我只是在做一些愚蠢的事情?
我会将这些数据写入串行设备。
提前致谢。
javascript - 将 int16 数组转换为浮点数
我有一个来自音频文件的字节数组,我想将其转换为可以处理以过滤音频信号的数据。我有一个这样的数组:[239,246,96,247.....]; 每个元素是一个 uint8 字节
每 2 个字节(16 位)代表一个样本,所以我将此数组转换为 int16 元素数组。
然后如何将此数组转换为值在 [-1,1] 范围内的信号?