Re: array generated
- To: mathgroup at smc.vnet.net
- Subject: [mg28904] Re: [mg28889] array generated
- From: BobHanlon at aol.com
- Date: Fri, 18 May 2001 01:13:07 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
imin =12; imax = 15; n = 10; Table[i, {i, imin, imax, (imax-imin)/(n-1)}] {12, 37/3, 38/3, 13, 40/3, 41/3, 14, 43/3, 44/3, 15} Bob Hanlon In a message dated 2001/5/17 5:10:12 AM, jsweet at engineering.ucsb.edu writes: >Is there a command that will allow me to specify a start and >stop value, and the number of points i want generated? > >Table[i,{i,min,max,di}] requires that i specify the interval, di, and >surmise the resultant number of points from that interval. >