Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Acrobat field custom calculation script

New Here ,
Sep 28, 2016 Sep 28, 2016

Hi, I have a with field calculation script. I wanna calculate EXP(X), I wanna link a X to "A" value. May I know what is formula for this calculation?

At another way, I found at online, operation is <2.71 ** X>, mean 2.71 power of X. But duno why <**> can't work on this purpose (power of) at custom calculation script.

May I know what else script can be create for EXP(X).

Please advise. Thank you.

From

Ethar

TOPICS
Acrobat SDK and JavaScript
709
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

New Here , Sep 28, 2016 Sep 28, 2016

Thanks all!! I finally get the answer by myself already.

Use this formula:

event.value = Math.exp(this.getField("A").value)

Yeah!!

Translate
New Here ,
Sep 28, 2016 Sep 28, 2016
LATEST

Thanks all!! I finally get the answer by myself already.

Use this formula:

event.value = Math.exp(this.getField("A").value)

Yeah!!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines