comp.lang.idl-pvwave archive
Messages from Usenet group comp.lang.idl-pvwave, compiled by Paulo Penteado

Home » Public Forums » archive » Re: How to produce N members between a and b with a determined spacing?
Show: Today's Messages :: Show Polls :: Message Navigator
E-mail to friend 
Return to the default flat view Create a new topic Submit Reply
Re: How to produce N members between a and b with a determined spacing? [message #68578 is a reply to message #68577] Mon, 16 November 2009 06:40 Go to previous message
David Fanning is currently offline  David Fanning
Messages: 11724
Registered: August 2001
Senior Member
ali mozafari writes:

> I need to produce N members between a and b with a determined spacing.
> In MATLAB it is work like this:
> Data=a:spacing:b
> How can we do this in IDL?

Something like this, I would imagine:

FUNCTION SpaceIT, a, b, spacing
number = Abs(a - b) / spacing
RETURN, Findgen(number+1) * spacing + (a < b)
END

Cheers,

David

--
David Fanning, Ph.D.
Fanning Software Consulting, Inc.
Coyote's Guide to IDL Programming: http://www.dfanning.com/
Sepore ma de ni thui. ("Perhaps thou speakest truth.")
[Message index]
 
Read Message
Read Message
Previous Topic: How to produce N members between a and b with a determined spacing?
Next Topic: Philips MRI to DICOM converter

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ] [ PDF ]

Current Time: Sat Oct 11 02:36:34 PDT 2025

Total time taken to generate the page: 0.96269 seconds