I'm curious too, because I'd like to solve a Power regression with multiple parameters. I know we can transform the power function to linear function
y=a*(x1^b1)*(x2^b2) => log y= log a + b1*log x1 + b2*log x2
but how can I make multiple linear regression? We can solve this regression with Linest excel function, is there any chance to solve this multiple linear regression with Math.NET Numeric library?