Hello,
First of all. I am a newbie to mathematica so please consider it while answering this post :) ! TY
I would like to plot a cloud of solutions for a curve fitting, I don't know how to do this. I have a bunch of values and I have a simple equation : y(x)=Aexp((B(c0/x)^c1)/(c2*x)) Where c0,c1 and c2 are constants that I know the value of. A and B are the parameters.
I would like to plot the different combinations of A and B which fit my values using this equation. Can you help me ?
Thank you
Input values: c0=...; c1=...; c2=...;
y[x_] := A Exp[(B (c0/x)^c1)/(c2*x)] Manipulate[Plot[y[x], {x, x0, x1}], {A, A0, A1}, {B, B0, B1}]