cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar

what is the sign function

1 ACCEPTED SOLUTION

Accepted Solutions
pmroz
Super User

Re: what is the sign function

There doesn't appear to be a sign function in JSL.  Do you need a sign function?  Something that returns 1 for positive, 0 for zero, and -1 for negative?  Here's one solution:

/*

Function Name: sign

Description: Returns 1 if positive, 0 for zero, -1 for negative

Arguments:

one_number    Number to test

*/

sign = function( {one_number},

        {Default Local},

    sign_value = .;

    if (!is empty(one_number),

        if (one_number > 0,

            sign_value = 1,

            one_number == 0,

            sign_value = 0,

            one_number < 0,

            sign_value = -1

        );

    );

// Return the sign value

     sign_value;

);


Sample usage:


a = sign(47);

print(a);

b = sign(0);

print(b);

c = sign(-999999);

print(c);

Yields the following in the log window:

1

0

-1


View solution in original post

2 REPLIES 2
pmroz
Super User

Re: what is the sign function

There doesn't appear to be a sign function in JSL.  Do you need a sign function?  Something that returns 1 for positive, 0 for zero, and -1 for negative?  Here's one solution:

/*

Function Name: sign

Description: Returns 1 if positive, 0 for zero, -1 for negative

Arguments:

one_number    Number to test

*/

sign = function( {one_number},

        {Default Local},

    sign_value = .;

    if (!is empty(one_number),

        if (one_number > 0,

            sign_value = 1,

            one_number == 0,

            sign_value = 0,

            one_number < 0,

            sign_value = -1

        );

    );

// Return the sign value

     sign_value;

);


Sample usage:


a = sign(47);

print(a);

b = sign(0);

print(b);

c = sign(-999999);

print(c);

Yields the following in the log window:

1

0

-1


Re: what is the sign function

Thanks PMroz, works great.

Gene

Recommended Articles