Differences between revisions 1 and 24 (spanning 23 versions)
Revision 1 as of 2007-11-08 03:13:19
Size: 57
Editor: AlfonsoReyes
Comment:
Revision 24 as of 2009-08-23 19:30:39
Size: 270
Editor: AlfonsoReyes
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
||Java||Jython|| ||'''Description''' ||'''In Java'''||'''In Jython'''||
||array of doubles || xCoord = Double[25] || xCoord = jarray.zeros(25, "d") ||
||Size of array || mx = data.length; || mx = len(data) ||

Describe ComparisonJavaJython here.

Description

In Java

In Jython

array of doubles

xCoord = Double[25]

xCoord = jarray.zeros(25, "d")

Size of array

mx = data.length;

mx = len(data)

ComparisonJavaJython (last edited 2009-08-23 20:01:21 by AlfonsoReyes)