Re: How to plot more curves on one graph
- To: mathgroup at smc.vnet.net
- Subject: [mg18154] Re: How to plot more curves on one graph
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Sat, 19 Jun 1999 23:54:23 -0400
- Organization: Universitaet Leipzig
- References: <7kcjaj$lq4@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Hi Uros, In[11]:= ?Circle "Circle[{x, y}, r] is a two-dimensional graphics primitive that represents a \ circle of radius r centered at the point x, y. Circle[{x, y}, {rx, ry}] \ yields an ellipse with semi-axes rx and ry. Circle[{x, y}, r, {theta1, \ theta2}] represents a circular arc." In[12]:= ?Line "Line[{pt1, pt2, ... }] is a graphics primitive which represents a line \ joining a sequence of points." Show[Graphics[{Line[{{0,0},{0,1}}],Circle[{0.3,0.3},0.3]}]] combines the stuff. Regards Jens Uros Filipic wrote: > > Hello ! > > I'm new at Mathematica and I would be very glad, if someone coud help me. > 1. How to plot Circles, Lines . . . > For example I would like to plot circle : Circele([2,3],4) > 2. How to plot, for example circle, line and point on the same graph ? > > Thanks, > Uros > > .