0

Is there a function in sas 9.4 similar to solve function in matlab that I can use for solving equations:

syms x sig1 sig2 mu1 mu2;

solve(1/sig1/sqrt(2*pi) * exp(-1/2*((x-mu1)/sig1)^2) == 1/sig2/sqrt(2*pi) * exp(-1/2*((x-mu2)/sig2)^2), x)

Or what would be the most effective way to find intersection point of 2 or more lines in sas.

Thanks

user27241
  • 201
  • 3
  • 10

1 Answers1

1

Equation solving is possible in several different environments in SAS.

Joe
  • 62,789
  • 6
  • 49
  • 67