| Date: | Mon, 11 Aug 2008 14:28:06 -0500 |
| Reply-To: | "./ ADD NAME=Data _null_," <iebupdte@GMAIL.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | "./ ADD NAME=Data _null_," <iebupdte@GMAIL.COM> |
| Subject: | Re: data questions |
|
| In-Reply-To: | <1623655a-eb9a-43c8-adff-4e09036e2e2f@l64g2000hse.googlegroups.com> |
| Content-Type: | text/plain; charset=ISO-8859-1 |
On 8/11/08, jingtailan@gmail.com <jingtailan@gmail.com> wrote:
> all:
>
> I have 3 questions:
>
> 1. array _[1000000] 8;
> question: what is 8 mean?
8 is the length of the variables in the array. _1-_1000000
> 2. sum=sum(of _numeric_, 5000);
5000 is a constant. 5e3
> question: what is 5000 mean?
>
>
> 3. do i=1 to le6;
Unless you typed the letter I instead of the number 1(one) Ie6 is a
variable name.
If is it is really suppose to be 1e6 then it is 1x10**6 or 1,000,000
>
> question: what is le6 mean?
>
> Thanks.
>
> Jingtailan
>
|