I am trying to fit a nonlinear model to some data with multiple independent variables.
My data is imported from .csv file and has the form of "H, P, n, MR" as collumns. My model is Beta*(H^0.75 + n*P^0.75), where I am trying to fit Beta (a normalization constant)
I tried the following, with no luck.
nlm1 = NonlinearModelFit[data, B * (HostMass^0.75 + NumPar*ParMass^0.75), {B}]
Any sugestions on how to properly use the syntax?
Thanks,
Blake Stevison