Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Exponential

Former Member
0 Likes
854

Hi. How can I do exponentials operations. For example:

(a+b) ^ 2.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
827

You could just do F1 on compute. It will tell you:

( a + b ) ** 2

Rob

Did you try EXP ? Do an F1 help

6 REPLIES 6
Read only

Former Member
0 Likes
827

a = 3 , B= 2 , C= ?

COMPUTE C = ( A + B ) * 2

Read only

0 Likes
827

This message was moderated.

Read only

Former Member
0 Likes
827

Did you try EXP ? Do an F1 help

Read only

Former Member
0 Likes
827

Hi Jorge,

( a + b ) ** 2.

Regards,

Chandra Sekhar

Read only

Former Member
0 Likes
827

DATA : A TYPE I,

B TYPE I,

C TYPE I.

A = 4.

B = 1.

COMPUTE C = ( A + B ) * 2.

WRITE C.

Read only

Former Member
0 Likes
828

You could just do F1 on compute. It will tell you:

( a + b ) ** 2

Rob