|
[Date Index]
[Thread Index]
[Author Index]
Re: How to draw full text in graphics
ÀÌÃ¢ÈÆ wrote:
> When I draw a 3DGraphic I can not see some texts This is an example.
>
> Plot3D[x^y, {x,1,2}, {y,-2,20}]
Mathematica restricts what it shows to where it thinks is interesting.
You can make it show everything by using
Plot3D[x^y, {x,1,2}, {y,-2,20}, PlotRange ->All]
In fact you can make the PlotRange be what you want, for example
PlotRange -> {{xmin, xmax}, {ymin,ymax}}
There are many options for controlling the behaviout of Plot3D ( and
similarly for many other functions). You can take a look at them with
Options[Plot3D]
--
Allan Hayes
Training and Consulting
Leicester, UK
hay@haystack.demon.co.uk
http://www.haystack.demon.co.uk
voice: +44 (0)116 271 4198
fax: +44 (0)116 271 8642
Prev by Date:
Re: Why doesn't this work ?
Next by Date:
Re: HELP: How to increase the resolution of .GIF images when importing to HTML ?
Prev by thread:
How to draw full text in graphics
Next by thread:
RE: How to draw full text in graphics
|