NSIS Math LibraryPower
を使用して計算を実行しようとしています。Math ライブラリの構文を理解するのに苦労しています。
NSISでこの計算を実行するにはどうすればよいですか:h ^= g;
Var h # example variables
Var g
Var a
# I am attempting to perform the following calculations in NSIS.
# I'm not sure how exactly to do it using the math library syntax?
# Do I need to include the Math.nsh library to use it?
# h ^= g;
# My attempt:
Math::Script "a = $h; b = $g; c = ?? a = Power(a,b,c); R0 = a"