Gain = 255 / (1 - 10 ^ ((Refblack-Refwhite) * 0.002/0.6) ^ (Dispgamma/1.7))
それはコンピューター言語ですか、それは c のように見えますが、排他的または浮動小数点数は計算しません。誰かがそれをcに変換できますか?
ありがとう
多くの言語で^
は、累乗です。それが でpow()
、 に次のプロトタイプがありますmath.h>
。
double pow(double x, double y);
これは x の y 乗を計算します。したがって、これにより方程式は次のように変換されます。
#include <math.h>
Gain = 255 / (1 - pow(10, pow(((Refblack-Refwhite) * 0.002/0.6), (Dispgamma/1.7))));
私は彼らが意味すると思います:Gain = 255 / (1.0 - powf(10, powf((Refblack-Refwhite) * 0.002/0.6), Disgamma/1.7)))
^ は C の通常の xor 演算子であるため、他の人が pow を使用したように、int:s のみを使用して int を返します。詳細については、man 3 pow をご覧ください。
gain = 255.0 / (1.0 - pow(10.0, pow((Refblack - Refwhite) * 0.002 / 0.6, Dispgamma / 1.7) ))
私にはMatlabコードのように見えます
Cでは、そのようなもの
#include <math.h>
float Gain=0;
...
Gain = 255 / (1 - powf(10, powf(((Refblack-Refwhite) * 0.002/0.6), (Dispgamma/1.7));
Gain = 255 / (1 - pow(10 , ( pow( (Refblack-Refwhite) * 0.002/0.6) , (Dispgamma/1.7)) ) )