|
[Date Index]
[Thread Index]
[Author Index]
Re: SetOptions & Show
- Subject: [mg3291] Re: [mg3262] SetOptions & Show
- From: richard at seuss.math.wright.edu (Richard Mercer)
- Date: 25 Feb 1996 11:57:50 -0600
- Approved: usenet@wri.com
- Distribution: local
- Newsgroups: wri.mathgroup
- Organization: Wolfram Research, Inc.
- Sender: daemon at wri.com
> Hello, my name is Roberto Cavaliere, excuse me for my
> incorrect English I have a problem with SetOptions; I
> want to set the option Axes for the function Show, but
> it has not any options in the Options list. If I write
> :
> In[1]:= SetOptions[Show,Axes->True]
> Out[1]:= Axes is not a valid option for Show
.....
Use
SetOptions[Graphics,Axes->True]
The options relevant to the Show command are stored as Graphics
options. Execute
Options[Graphics]
to see the full list.
Richard Mercer
Prev by Date:
Re: SetOptions & Show
Next by Date:
Animation
Previous by thread:
Re: SetOptions & Show
Next by thread:
fitting a curve by adjusting exponents
|