j
k
j a
j l
On Tue, 13 Jan 2004, Nils Wagner wrote:
Hi all, How can I subdivide an interval provided that size(x) = n ? n = 10 h = (xu-xl)/n x = arange(xl,xu,h) Sometimes size(x) <> n
Hi all,
How can I subdivide an interval provided that size(x) = n ?
n = 10 h = (xu-xl)/n x = arange(xl,xu,h)
Sometimes size(x) <> n
Use: x=xl+h*arange(n) Pearu
Back to the thread
Back to the list