Re: simply problem (not for me) about axes scale
- To: mathgroup at smc.vnet.net
- Subject: [mg52963] Re: [mg52936] simply problem (not for me) about axes scale
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Sat, 18 Dec 2004 03:59:36 -0500 (EST)
- Reply-to: hanlonr at cox.net
- Sender: owner-wri-mathgroup at wolfram.com
Set the PlotRange and the AspectRatio
Off[General::spell1];
xmin=0; xmax=3;
ymin=-1/2; ymax=4;
Plot[(3x-4)(x-2),{x,0,3},
PlotRange->{{xmin,xmax},{ymin,ymax}},
AspectRatio->(ymax-ymin)/(xmax-xmin)];
Bob Hanlon
>
> From: "Alessandro M." <mazuego at virgilio.it>
To: mathgroup at smc.vnet.net
> Date: 2004/12/17 Fri AM 05:19:02 EST
> To: mathgroup at smc.vnet.net
> Subject: [mg52963] [mg52936] simply problem (not for me) about axes scale
>
> Hi all
> I've a problem. I cannot find in the master index which is the built-in
> function that allow me to plot a curve with the same scale on the Y and
> X axes. I mean... I want the same subdivisions length on the X and Y
> axes on a 2D plot!
> Thank you for patience
>
>