Group Abstract Group Abstract

Message Boards Message Boards

0
|
4K Views
|
1 Reply
|
0 Total Likes
View groups...
Share
Share this post:
GROUPS:

Cloud of solutions for a noob !

Posted 10 years ago

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

POSTED BY: Pierre Mezeix

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}]
POSTED BY: S M Blinder
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard