Lines Matching refs:array

144 # bug fix: select xxx when xxx is an array fails to do lookup of defined values
150 # bug fix: write VAR for string array does not work.
208 # bug fix: load append of file with ellipsoids causes array out of bounds exception
390 # new feature: by passing an array to a function, you can make that variable
391 # return a value -- any value, not just an array:
407 # new feature: all.bin(f0, f1, df) -- binning of data to give an integer array of counts
580 # new feature: print {xxx}.label.all("xxxx") -- forces array even if only one atom (like "{xxx}.lab…
582 # bug fix: xxx.all was not forcing array when only one value
596 # new feature: [array].sort
597 # new feature: [array].reverse
598 # new feature: [array].min
599 # new feature: [array].max
600 # new feature: [array].average
601 # new feature: [array].stddev
639 # and one-dimensional array.
788 # bug fix: x = array();x[1] = "testing" not working
1257 # code: rewritten code for Marching Cubes no longer requires 2D array of cube data
1264 # code: rewritten code for Marching Cubes no longer requires 3D array of data
1604 # new feature: Jmol math simple array definitions using brackets: x = [3,4,5,6]
1789 # code: allows for getJpeg(quality,asString) option to return byte array instead of base64.
2047 # bug fix: 11.5.48 is broken for scripts with array definitions such as
2048 # p = array(); p[pt] = ....
2122 # bug fix: array size limited
2184 # bug fix: local assignment var x = array() followed by x[n] = ... does not work
2482 # array of points to load causes null pointer exception:
2592 # bug fix: modelLoader was assigning too much array space for chains
3042 # bug fix: command "test()" where test() is a user-defined function causes array-out-of-bounds error
3142 # // and the following code then retrieves an array of applets:
3623 # bug fix: "isosurface select() map property xxxx" array out of bounds error
3757 # then reports picking of draw objects as a JavaScript array:
3815 # x = array("atomno<10","atomno>20")
3821 # new feature: set atom properties using an array instead of a DATA statement:
3823 # {*}.x = array(2,3,4,5,6);
3824 # {atomno<=3}.color = array("red","green","blue")
3825 # {*}.property_mydata = array(1.0,5.5,4.4,3.3);
3826 # {atomno < 4}.xyz = array({3 4 5},{4 5 6},{5 6 7})
3827 # if the array is shorter than the number of atoms selected, then
3854 # new feature: model-based parallel array calculations:
3858 # new feature: point3f in array():
3859 # xlist = array({1,2,3}, {1,1,0});print xlist[1]+{1 0 0};
3920 # xlist = array("red", "green", "blue");
4082 # new feature: set atom properties using an array instead of a DATA statement:
4084 # {*}.property_mydata = array(1.0,5.5,4.4,3.3);
4086 # {atomno < 4}.xyz = array({3 4 5},{4 5 6},{5 6 7})
4356 # new feature: array variables saved as arrays
4362 # because x was only saved as a string, not an array
4363 # now x is saved as an array, so this is no problem.
4382 # new feature: Jmol math array element assignment:
4389 # a[6] = "expanding the array"
4397 # expanding the array
4406 # new feature: Jmol math x = array(a,b,,,,)
4408 # x = array(3,4,5,6)
4465 # make the correlated value a simple index into the array.
4602 # setting an array variable to the color values:
5087 # of the function with an array of f[nX][nY] data values:
5764 # The .lines operator splits a string into an array based on line termination.