Subdivide
Subdivide(n)
returns a list with
n+1
entries obtained by subdividing the range0
to1
.
Subdivide(to, n)
returns a list with
n+1
entries obtained by subdividing the range0
toto
.
Subdivide(from, to, n)
returns a list with
n+1
entries obtained by subdividing the rangefrom
toto
.
Examples
>> Subdivide(5){0,1/5,2/5,3/5,4/5,1}
>> Subdivide(10, 4){0,5/2,5,15/2,10}
>> Subdivide(-1, -4, 3){-1,-2,-3,-4}
>> Subdivide({10,5}, {5,15}, 4){{10,5},{35/4,15/2},{15/2,10},{25/4,25/2},{5,15}}
>> N@Subdivide(-5, 5, 6){-5.0,-3.33333,-1.66667,0.0,1.66667,3.33333,5.0}
Implementation status
- ✅ - full supported