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
Equation solving is possible in several different environments in SAS.