BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
jan_t_lagen
Calcite | Level 5

Hi,

 

I'm trying to find the root of my function and after some googling i found the FROOT function. As far as I can see/find there is no way to use this on a function that has more than one input. Surely it is possible to something along the lines of:

 

start Func(x,a,b);
     return(a*x##2-b);
finish;

 

bounds = {0,2};
roots = froot( "Func", bounds);

 

To clarify I want to send in constants in the function and find the root changing only "x".

 

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

I think you are trying to do something like this:

 

proc iml;
start Func(x) global(a,b);
     return(a*x##2-b);
finish;

a = 1;
b = 2;
bounds = {-2 0,
           0 2};
roots = froot( "Func", bounds);
print roots;

The FROOT function is a numerical root-finder, which means that all symbols must have assigned values. Note also that the FROOT function will return one root for each interval that you specify. If you think you have multiple roots but do not have a good estimate for the intervals on which they occur, read the article "Finding roots: Automating the search for an initial guess."

 

If you are looking for a SYMBOLIC answer (like the quadratic formula) that gives x in terms of symbolic parameters a and b, then you need to use symbolic software such as Wolfram Alpha. However, only a very small number of functions are invertible.

View solution in original post

1 REPLY 1
Rick_SAS
SAS Super FREQ

I think you are trying to do something like this:

 

proc iml;
start Func(x) global(a,b);
     return(a*x##2-b);
finish;

a = 1;
b = 2;
bounds = {-2 0,
           0 2};
roots = froot( "Func", bounds);
print roots;

The FROOT function is a numerical root-finder, which means that all symbols must have assigned values. Note also that the FROOT function will return one root for each interval that you specify. If you think you have multiple roots but do not have a good estimate for the intervals on which they occur, read the article "Finding roots: Automating the search for an initial guess."

 

If you are looking for a SYMBOLIC answer (like the quadratic formula) that gives x in terms of symbolic parameters a and b, then you need to use symbolic software such as Wolfram Alpha. However, only a very small number of functions are invertible.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

From The DO Loop
Want more? Visit our blog for more articles like these.
Discussion stats
  • 1 reply
  • 1208 views
  • 0 likes
  • 2 in conversation