Re: Displaying decimals
- To: mathgroup at smc.vnet.net
 - Subject: [mg63490] Re: Displaying decimals
 - From: bghiggins at ucdavis.edu
 - Date: Tue, 3 Jan 2006 01:24:42 -0500 (EST)
 - References: <dpb0q8$1ph$1@smc.vnet.net>
 - Sender: owner-wri-mathgroup at wolfram.com
 
Lea, Try this:
slope[50]//InputForm
163.189230604459
Or use NumberForm. Here is the slope as a 10 digit number with 6 digits
after the decimal point
NumberForm[slope[50], {10, 6}]
Cheers,
Brian