| Author |
Comment/Response |
Michael
|
06/23/12 10:50pm
Try something like
If[b > a,
y = (a x^3 + b x^2 + c x )/(b - a );
Plot1 = Plot[{y}, {x, 0, 1}, AxesOrigin -> {0, 0}],
Plot[Null, {x, 0, 1}, AxesOrigin -> {0, 0},
Epilog -> Inset[Style["b must be greater than a", Large]]]
],
The Plot[Null,...] produces axes but no graph. Epilog adds graphics to a plot. Inset sticks material in the middle by default.
URL: , |
|