0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

平方根を求めて遊ぶ。(ほぼニュートン法) (0x5f3759df)

Last updated at Posted at 2025-03-03

参考

o_coq829.jpg

注意

  • 過去ログをみよ!!!
  • M5NanoC6での予定は、未定
  • 非営利、研究調査で引用しました。

プログラム

オンラインコンパイラ paiza



//https://en.wikipedia.org/wiki/Fast_inverse_square_root
float q_rsqrt(float number)
{
  long i;
  float x2, y;
  const float threehalfs = 1.5F;

  x2 = number * 0.5F;
  y  = number;
  i  = * ( long * ) &y;                       // evil floating point bit level hacking
  i  = 0x5f3759df - ( i >> 1 );               // what the fuck?
  y  = * ( float * ) &i;
  y  = y * ( threehalfs - ( x2 * y * y ) );   // 1st iteration
  // y  = y * ( threehalfs - ( x2 * y * y ) );   // 2nd iteration, this can be removed

  return y;
}


#include <iostream>
using namespace std;
int main(void){
    // Your code here!
    
    float in;
    float f;
    
    in = 2.0;
    
    f = q_rsqrt(in); //逆平方根
    
    f = in * f;
    
    printf("%f\n",f);
    
}




1.413860

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?