由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 有没有什么简单的方法从一个double precision的floating point 中读出一个特定的bit?
相关主题
c++ template中如何判断类型Any possibility to make this expression faster?
C的问题,困惑中这个面试题有什么trick?
问一个在C里面转换十六进制的问题[合集] reinterpret_cast a 4 byte unsigned char to integer
一道面试题[合集] 讨厌的WARNING: 在 MANAGED C++ 中写东东
一个hash table的简单问题pointer overflow
关于Dword 和 wordC++ 初学者请教一个 iostream 的问题
C++中size_type怎么处理?C++怎么写任意重重循环?
What is size_t mean in C?Need help on C++ code
相关话题的讨论汇总
话题: double话题: c++话题: floating话题: precision话题: 读出
进入Programming版参与讨论
1 (共1页)
n******e
发帖数: 7
1
c (not c++), matlab 都可以
thx.
w****r
发帖数: 9
2
if C can, then C++ should be able to.

【在 n******e 的大作中提到】
: c (not c++), matlab 都可以
: thx.

n******e
发帖数: 7
3
Sorry, 我的意思其实是VC或windows里的函数我这里不能call。

【在 w****r 的大作中提到】
: if C can, then C++ should be able to.
j*****h
发帖数: 62
4
double x;
int pos;
(*(long *)&x ) >> pos & 1;
would this work?

【在 n******e 的大作中提到】
: Sorry, 我的意思其实是VC或windows里的函数我这里不能call。
k****f
发帖数: 3794
5
double可是8 byte的
long只有4个而已

【在 j*****h 的大作中提到】
: double x;
: int pos;
: (*(long *)&x ) >> pos & 1;
: would this work?

c*****t
发帖数: 1879
6
看什么系统。。。

【在 k****f 的大作中提到】
: double可是8 byte的
: long只有4个而已

t****n
发帖数: 15
7
union
{ unsigned char bytes[sizeof(double)];
double value;
}
then manipulate unsigned char member.

【在 n******e 的大作中提到】
: c (not c++), matlab 都可以
: thx.

n******e
发帖数: 7
8
Thx! Another fellow suggested this too. I'm going to give this a try.

【在 t****n 的大作中提到】
: union
: { unsigned char bytes[sizeof(double)];
: double value;
: }
: then manipulate unsigned char member.

1 (共1页)
进入Programming版参与讨论
相关主题
Need help on C++ code一个hash table的简单问题
问一个Fortran和C++科学数值格式输出区别的问题关于Dword 和 word
新手请教:C++ decrement loopC++中size_type怎么处理?
python question, easy oneWhat is size_t mean in C?
c++ template中如何判断类型Any possibility to make this expression faster?
C的问题,困惑中这个面试题有什么trick?
问一个在C里面转换十六进制的问题[合集] reinterpret_cast a 4 byte unsigned char to integer
一道面试题[合集] 讨厌的WARNING: 在 MANAGED C++ 中写东东
相关话题的讨论汇总
话题: double话题: c++话题: floating话题: precision话题: 读出