Displaying 2 results from an estimated 2 matches for "369103".
Did you mean:
369003
2011 May 05
0
CEEA-2011:0485 CentOS 5 x86_64 java-1.6.0-openjdk Update
CentOS Errata and Enhancement Advisory 2011:0485
Upstream details at : https://rhn.redhat.com/errata/RHEA-2011-0485.html
The following updated files have been uploaded and are currently
syncing to the mirrors: ( md5sum Filename )
x86_64:
08bb288b316f7b4322d8e3a7c5d31115 java-1.6.0-openjdk-1.6.0.0-1.21.b17.el5.x86_64.rpm
514224960c77aecef03ee3cddf36844b
2003 Sep 11
2
(structured) programming style
I find that because R functions are call by value, and because there are
no pointer or reference types (a la C++), I am making fairly heavy use
of lexical scoping to modify variables. E.g.
outer <- function() {
m <- matrix(0, 2, 2)
inner <- function() {
m[2,2] <<- 3
...
}
}
I am not too pleased with this, as it violates basic rules of structured
programming, namely