Re: PolarPlot
- To: mathgroup at smc.vnet.net
- Subject: [mg83530] Re: PolarPlot
- From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
- Date: Thu, 22 Nov 2007 04:48:53 -0500 (EST)
- Organization: The Open University, Milton Keynes, UK
- References: <fi12u6$cnd$1@smc.vnet.net>
Giampaolo Muntoni wrote: > There is someone that knows exact sintax for PolarPlot? > Need it of some packages? > Thanks!!! That depends on what version of Mathematica you are using. Version 6 does not require to load anything before using PolarPlot (the function resides now within the kernel). PolarPlot[Sin[3 t], {t, 0, Pi}] (Note that, with version 6, you must not add a semicolon at the end of the expression otherwise the plot is suppressed). OTOH, before version 6, you must load the package Graphics`Graphics` before using PolarPlot. Needs["Graphics`Graphics`"] PolarPlot[Sin[3t],{t,0,Pi}] HTH, -- Jean-Marc