Welcome to Astronomy for Kids! When looking for the answer to "What is the name of our solar system".
see also why the words Luna and Sol are sometimes used ... ;)
Monday, May 31, 2004
Saskatchewan Learning | School Age | Evergreen Curriculum | Resources | Curriculum By Subject ... great resource for home schoolers.
Wednesday, May 26, 2004
Tuesday, May 25, 2004
Friday, May 21, 2004
Insert a column into an array:
dimension myarray[2,3]
myarray[1,1]="R1C1"
myarray[1,2]="R1C2"
myarray[1,3]="R1C3"
myarray[2,1]="R2C1"
myarray[2,2]="R2C2"
myarray[2,3]="R2C3"
=addcol(@myarray)
CLEAR
DISPLAY MEMORY LIKE myarray
FUNCTION addcol
PARAMETERS aArray
LOCAL nRows,nCols
nRows=ALEN(aArray,1)
nCols=ALEN(aArray,2)
DIMENSION aArray[nRows*(nCols+1)]
FOR i=(nCols+1) TO nRows*(nCols+1) STEP (nCols+1)
AINS(aArray,i)
NEXT
DIMENSION aArray[nRows,nCols+1]
return
ENDFUNC
Thanks to Peter Cushing via ProFox@leafe.com
dimension myarray[2,3]
myarray[1,1]="R1C1"
myarray[1,2]="R1C2"
myarray[1,3]="R1C3"
myarray[2,1]="R2C1"
myarray[2,2]="R2C2"
myarray[2,3]="R2C3"
=addcol(@myarray)
CLEAR
DISPLAY MEMORY LIKE myarray
FUNCTION addcol
PARAMETERS aArray
LOCAL nRows,nCols
nRows=ALEN(aArray,1)
nCols=ALEN(aArray,2)
DIMENSION aArray[nRows*(nCols+1)]
FOR i=(nCols+1) TO nRows*(nCols+1) STEP (nCols+1)
AINS(aArray,i)
NEXT
DIMENSION aArray[nRows,nCols+1]
return
ENDFUNC
Thanks to Peter Cushing via ProFox@leafe.com
Thursday, May 20, 2004
Summation of Tesla's Dynamic Theory of Gravity Tesla invented so much and is credited with so little...
Monday, May 10, 2004
Thursday, May 06, 2004
Subscribe to:
Posts (Atom)