<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>PIPRIME.FR &#187; graph.asy</title>
	<atom:link href="http://www.piprime.fr/developpeur/asymptote/example-asy2d/graph-asy/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.piprime.fr</link>
	<description>Administrateur-Développeur GNU/Linux-WEB</description>
	<lastBuildDate>Thu, 22 Dec 2011 12:55:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Asymptote using graph.asy &#8211; fig0350</title>
		<link>http://www.piprime.fr/701/asymptote-using-graph_asy-fig0350/</link>
		<comments>http://www.piprime.fr/701/asymptote-using-graph_asy-fig0350/#comments</comments>
		<pubDate>Tue, 28 Aug 2007 10:10:00 +0000</pubDate>
		<dc:creator>Ph. Ivaldi</dc:creator>
				<category><![CDATA[Asymptote]]></category>
		<category><![CDATA[Examples 2D]]></category>
		<category><![CDATA[graph.asy]]></category>
		<category><![CDATA[align]]></category>
		<category><![CDATA[Function (graphing)]]></category>
		<category><![CDATA[Graph]]></category>
		<category><![CDATA[picture]]></category>
		<category><![CDATA[Transform]]></category>

		<guid isPermaLink="false">http://1ff629f4874d086cebf59d8728f3ffe3</guid>
		<description><![CDATA[You may view all the posts of the category "graph.asy" (Compiled with Asymptote version 2.14svn-r5318) // From Asymptote's FAQ import graph; real width=15cm; real aspect=0.3; picture pic1,pic2; size(pic1,width,aspect*width,IgnoreAspect); size(pic2,width,aspect*width,IgnoreAspect); scale(pic1,false); scale(pic2,false); real xmin1=6; real xmax1=9; real xmin2=8; real xmax2=16; real a1=1; real a2=0.001; real f1(real x) {return a1*sin(x/2*pi);} real f2(real x) {return a2*sin(x/4*pi);} draw(pic1,graph(pic1,f1,xmin1,xmax1)); draw(pic2,graph(pic2,f2,xmin2,xmax2)); [...]]]></description>
		<wfw:commentRss>http://www.piprime.fr/701/asymptote-using-graph_asy-fig0350/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asymptote using graph.asy &#8211; fig0340</title>
		<link>http://www.piprime.fr/700/asymptote-using-graph_asy-fig0340/</link>
		<comments>http://www.piprime.fr/700/asymptote-using-graph_asy-fig0340/#comments</comments>
		<pubDate>Tue, 28 Aug 2007 09:10:00 +0000</pubDate>
		<dc:creator>Ph. Ivaldi</dc:creator>
				<category><![CDATA[Asymptote]]></category>
		<category><![CDATA[Examples 2D]]></category>
		<category><![CDATA[graph.asy]]></category>
		<category><![CDATA[Axis]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[Graph]]></category>

		<guid isPermaLink="false">http://4eff5a295d248e0b54ac7863b2363154</guid>
		<description><![CDATA[You may view all the posts of the category "graph.asy" (Compiled with Asymptote version 2.14svn-r5318) //Author: John Bowman import graph; size(2cm, 0); xlimits(0, 100); ylimits(-50, 50); yaxis( "y-value" ,Left, Courier("m", "n") + fontsize(12), RightTicks("%.4g"));]]></description>
		<wfw:commentRss>http://www.piprime.fr/700/asymptote-using-graph_asy-fig0340/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asymptote using graph.asy &#8211; fig0330</title>
		<link>http://www.piprime.fr/699/asymptote-using-graph_asy-fig0330/</link>
		<comments>http://www.piprime.fr/699/asymptote-using-graph_asy-fig0330/#comments</comments>
		<pubDate>Tue, 28 Aug 2007 08:10:00 +0000</pubDate>
		<dc:creator>Ph. Ivaldi</dc:creator>
				<category><![CDATA[Asymptote]]></category>
		<category><![CDATA[Examples 2D]]></category>
		<category><![CDATA[graph.asy]]></category>
		<category><![CDATA[Function (graphing)]]></category>
		<category><![CDATA[Graph]]></category>
		<category><![CDATA[legend]]></category>
		<category><![CDATA[slopefield]]></category>
		<category><![CDATA[tex/latex features]]></category>

		<guid isPermaLink="false">http://15e5ac0eb1048bd5c311ffc0606c6374</guid>
		<description><![CDATA[You may view all the posts of the category "graph.asy" (Compiled with Asymptote version 2.14svn-r5318) import slopefield; import graph; size(8cm,0); real f(real t) {return exp(-t^2);} defaultpen(); xlimits( 0,1); ylimits( 0,1); yaxis( "$y$" ,LeftRight, RightTicks); xaxis( "$x$", Ticks()); draw(graph(f,0,1),"$x\longmapsto{}e^{-x^2}$"); draw(curve((0,0),f,(0,0),(1,10)),linecap(0)+red,"$\displaystyle x\longmapsto\int_{0}^{x}e^{-t^2}\;dt$"); //Test with three values calculated with Maxima: dot((.25,0.13816319508411845*sqrt(pi))^^(.5 , 0.26024993890652326*sqrt(pi))); dot((.75, 0.3555778168267576*sqrt(pi))); attach(legend(),point(10S),30S); $(document).ready(function(){$("a#fig15e5ac0eb1048bd5c311ffc0606c6374").fancybox();});]]></description>
		<wfw:commentRss>http://www.piprime.fr/699/asymptote-using-graph_asy-fig0330/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asymptote using graph.asy &#8211; fig0320</title>
		<link>http://www.piprime.fr/698/asymptote-using-graph_asy-fig0320/</link>
		<comments>http://www.piprime.fr/698/asymptote-using-graph_asy-fig0320/#comments</comments>
		<pubDate>Tue, 28 Aug 2007 07:10:00 +0000</pubDate>
		<dc:creator>Ph. Ivaldi</dc:creator>
				<category><![CDATA[Asymptote]]></category>
		<category><![CDATA[Examples 2D]]></category>
		<category><![CDATA[graph.asy]]></category>
		<category><![CDATA[Function (graphing)]]></category>
		<category><![CDATA[Graph]]></category>
		<category><![CDATA[interpolate]]></category>
		<category><![CDATA[legend]]></category>

		<guid isPermaLink="false">http://3360086e621dce6153ec178dbaadb916</guid>
		<description><![CDATA[You may view all the posts of the category "graph.asy" (Compiled with Asymptote version 2.14svn-r5318) import graph; import interpolate; size(15cm,10cm,IgnoreAspect); real[] xpt,ypt; real [] xpt={1, 2, 4, 5, 7, 8, 10}; real [] ypt={1, 2, 2, 3, 1, 0.5, 3}; horner h=diffdiv(xpt,ypt); fhorner L=fhorner(h); scale(false,true); pen p=linewidth(1); draw(graph(L,min(xpt),max(xpt)),dashed+black+p,"Lagrange interpolation"); draw(graph(xpt,ypt,Hermite(natural)),red+p,"natural spline"); draw(graph(xpt,ypt,Hermite(monotonic)),blue+p,"monotone spline"); xaxis("$x$",BottomTop,LeftTicks(Step=1,step=0.25)); yaxis("$y$",LeftRight,RightTicks(Step=5)); [...]]]></description>
		<wfw:commentRss>http://www.piprime.fr/698/asymptote-using-graph_asy-fig0320/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asymptote using graph.asy &#8211; fig0310</title>
		<link>http://www.piprime.fr/697/asymptote-using-graph_asy-fig0310/</link>
		<comments>http://www.piprime.fr/697/asymptote-using-graph_asy-fig0310/#comments</comments>
		<pubDate>Tue, 28 Aug 2007 06:10:00 +0000</pubDate>
		<dc:creator>Ph. Ivaldi</dc:creator>
				<category><![CDATA[Asymptote]]></category>
		<category><![CDATA[Examples 2D]]></category>
		<category><![CDATA[graph.asy]]></category>
		<category><![CDATA[Function (graphing)]]></category>
		<category><![CDATA[Graph]]></category>
		<category><![CDATA[interpolate]]></category>
		<category><![CDATA[legend]]></category>
		<category><![CDATA[typedef]]></category>

		<guid isPermaLink="false">http://76690ae115d332506021c6e2e548a897</guid>
		<description><![CDATA[You may view all the posts of the category "graph.asy" (Compiled with Asymptote version 2.14svn-r5318) // Other examples of interpolations can be found here import graph; unitsize(1cm); typedef real hermite(real); hermite hermite(pair [] m, real [] d) {/*DOC Retourne la fonction polynôme de Hermite passant par les points m(x_i,y_i) de nombre dérivée d_i en ce [...]]]></description>
		<wfw:commentRss>http://www.piprime.fr/697/asymptote-using-graph_asy-fig0310/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asymptote using graph.asy &#8211; fig0300</title>
		<link>http://www.piprime.fr/696/asymptote-using-graph_asy-fig0300/</link>
		<comments>http://www.piprime.fr/696/asymptote-using-graph_asy-fig0300/#comments</comments>
		<pubDate>Tue, 28 Aug 2007 05:10:00 +0000</pubDate>
		<dc:creator>Ph. Ivaldi</dc:creator>
				<category><![CDATA[Asymptote]]></category>
		<category><![CDATA[Examples 2D]]></category>
		<category><![CDATA[graph.asy]]></category>
		<category><![CDATA[Function (graphing)]]></category>
		<category><![CDATA[Graph]]></category>
		<category><![CDATA[legend]]></category>
		<category><![CDATA[typedef]]></category>

		<guid isPermaLink="false">http://df0f63b81ec0b14c8620da2b6775dc81</guid>
		<description><![CDATA[You may view all the posts of the category "graph.asy" (Compiled with Asymptote version 2.14svn-r5318) //Beta distribution import graph; unitsize(10cm,3cm); typedef real realfcn(real); realfcn betaFunction(real alpha, real beta){ return new real(real x){ return gamma(alpha+beta)/(gamma(alpha)+gamma(beta))*x^(alpha-1)*(1-x)^(beta-1); }; }; real[][] ab=new real[][] {{0.5,0.5},{5,1},{1,3},{2,2},{2,5}}; pen[] p=new pen[] {0.8*red, 0.8*green, 0.8*blue, 0.8*magenta, black}; for (int i=0; i &#60; 5; ++i) [...]]]></description>
		<wfw:commentRss>http://www.piprime.fr/696/asymptote-using-graph_asy-fig0300/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asymptote using graph.asy &#8211; fig0290</title>
		<link>http://www.piprime.fr/695/asymptote-using-graph_asy-fig0290/</link>
		<comments>http://www.piprime.fr/695/asymptote-using-graph_asy-fig0290/#comments</comments>
		<pubDate>Tue, 28 Aug 2007 04:10:00 +0000</pubDate>
		<dc:creator>Ph. Ivaldi</dc:creator>
				<category><![CDATA[Asymptote]]></category>
		<category><![CDATA[Examples 2D]]></category>
		<category><![CDATA[graph.asy]]></category>
		<category><![CDATA[Function (graphing)]]></category>
		<category><![CDATA[Graph]]></category>
		<category><![CDATA[interpolate]]></category>
		<category><![CDATA[legend]]></category>
		<category><![CDATA[typedef]]></category>

		<guid isPermaLink="false">http://2254faa970e1e5908d2469a8eecdea59</guid>
		<description><![CDATA[You may view all the posts of the category "graph.asy" (Compiled with Asymptote version 2.14svn-r5318) import graph; size(10cm); xaxis("$x$", -2*pi,2*pi, Arrow); yaxis("$y$", -4,4, Arrow); typedef real realfcn(real); // Define new type: real function of real realfcn TPC(int n) { //Return Taylor polynomial (degrees 2*n) of cos return new real(real x) { return sum(sequence(new real(int m){return [...]]]></description>
		<wfw:commentRss>http://www.piprime.fr/695/asymptote-using-graph_asy-fig0290/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asymptote using graph.asy &#8211; fig0280</title>
		<link>http://www.piprime.fr/694/asymptote-using-graph_asy-fig0280/</link>
		<comments>http://www.piprime.fr/694/asymptote-using-graph_asy-fig0280/#comments</comments>
		<pubDate>Tue, 28 Aug 2007 03:10:00 +0000</pubDate>
		<dc:creator>Ph. Ivaldi</dc:creator>
				<category><![CDATA[Asymptote]]></category>
		<category><![CDATA[Examples 2D]]></category>
		<category><![CDATA[graph.asy]]></category>
		<category><![CDATA[Function (graphing)]]></category>
		<category><![CDATA[Graph]]></category>
		<category><![CDATA[legend]]></category>
		<category><![CDATA[tex/latex features]]></category>
		<category><![CDATA[typedef]]></category>

		<guid isPermaLink="false">http://59319915b9e1f4b86c6b2a081943c637</guid>
		<description><![CDATA[You may view all the posts of the category "graph.asy" (Compiled with Asymptote version 2.14svn-r5318) import graph; size(10cm,6cm,IgnoreAspect); typedef real realfcn(real); realfcn F(real p){ return new real(real x){return sin(x)/sqrt(p);}; }; real pmax=5; for (real p=1; p&#60;=pmax; p+=1) { draw(graph(F(p),-2pi,2pi), ((p-1)/(pmax-1)*blue+(1-(p-1)/(pmax-1))*red), "$\frac{\sin(x)}{\sqrt{" + (string) p +"}}$"); } xlimits(-2pi,2pi); ylimits(-1,1); xaxis("$x$",BottomTop,Ticks); yaxis("$y$",LeftRight,Ticks); attach(legend(),point(E),20E,UnFill); $(document).ready(function(){$("a#fig59319915b9e1f4b86c6b2a081943c637").fancybox();});]]></description>
		<wfw:commentRss>http://www.piprime.fr/694/asymptote-using-graph_asy-fig0280/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asymptote using graph.asy &#8211; fig0270</title>
		<link>http://www.piprime.fr/693/asymptote-using-graph_asy-fig0270/</link>
		<comments>http://www.piprime.fr/693/asymptote-using-graph_asy-fig0270/#comments</comments>
		<pubDate>Tue, 28 Aug 2007 02:10:00 +0000</pubDate>
		<dc:creator>Ph. Ivaldi</dc:creator>
				<category><![CDATA[Asymptote]]></category>
		<category><![CDATA[Examples 2D]]></category>
		<category><![CDATA[graph.asy]]></category>
		<category><![CDATA[Function (graphing)]]></category>
		<category><![CDATA[Graph]]></category>
		<category><![CDATA[legend]]></category>

		<guid isPermaLink="false">http://98dce58ba8efcb3b787b34c8628c9329</guid>
		<description><![CDATA[You may view all the posts of the category "graph.asy" (Compiled with Asymptote version 2.14svn-r5318) //Author: John Bowman import graph; size(250,200,IgnoreAspect); real Sin(real t, real w) {return sin(w*t);} draw(graph(new real(real t) {return Sin(t,pi);},0,1),blue,"$\sin(\pi x)$"); draw(graph(new real(real t) {return Sin(t,2pi);},0,1),red,"$\sin(2\pi x)$"); xaxis("$x$",BottomTop,Ticks); yaxis("$y$",LeftRight,Ticks); attach(legend(),point(E),20E,UnFill); $(document).ready(function(){$("a#fig98dce58ba8efcb3b787b34c8628c9329").fancybox();});]]></description>
		<wfw:commentRss>http://www.piprime.fr/693/asymptote-using-graph_asy-fig0270/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asymptote using graph.asy &#8211; fig0260</title>
		<link>http://www.piprime.fr/692/asymptote-using-graph_asy-fig0260/</link>
		<comments>http://www.piprime.fr/692/asymptote-using-graph_asy-fig0260/#comments</comments>
		<pubDate>Tue, 28 Aug 2007 01:10:00 +0000</pubDate>
		<dc:creator>Ph. Ivaldi</dc:creator>
				<category><![CDATA[Asymptote]]></category>
		<category><![CDATA[Examples 2D]]></category>
		<category><![CDATA[graph.asy]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[contour]]></category>
		<category><![CDATA[Function (graphing)]]></category>
		<category><![CDATA[Function (implicit)]]></category>
		<category><![CDATA[Graph]]></category>
		<category><![CDATA[hyperbola]]></category>

		<guid isPermaLink="false">http://f9dbeaa37c540b9f0f9ed4257ddb6ce6</guid>
		<description><![CDATA[You may view all the posts of the category "graph.asy" (Compiled with Asymptote version 2.14svn-r5318) size(10cm,0); import contour; import stats; import graph; xlimits( -5, 5); ylimits( -4, 5); yaxis( "$y$" , Ticks(Label(currentpen+fontsize(8),align=E))); xaxis( "$x$", Ticks(Label(currentpen+fontsize(8)))); real f(real x, real y) {return x^2-x-y^2+3y-6;} int min=-5, max=5, n=max-min+1; real[] value=sequence(min,max); pen[] p=sequence(new pen(int i) { return (value[i] [...]]]></description>
		<wfw:commentRss>http://www.piprime.fr/692/asymptote-using-graph_asy-fig0260/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

