using units and plotting
- To: mathgroup at smc.vnet.net
- Subject: [mg80852] using units and plotting
- From: phillman5 <PHILLMAN5 at gmail.com>
- Date: Tue, 4 Sep 2007 03:45:18 -0400 (EDT)
Is there any hints how to plot things other than downloading custom
packages when you use units? To plot position verus time.
<<Units`
dist:= a t^2
a=9.8 Meter/Second^2
Plot[dist,{t, 0 Second, 10 Second}]
Does not work. Of course you can use
Plot[dist/Meter,{t, 0 Second, 10 Second}]
to make the y axis unitless, but how about the x axis?