search for: 369108

Displaying 2 results from an estimated 2 matches for "369108".

Did you mean: 369103
2011 May 05
0
CESA-2011:0491 Moderate CentOS 4 i386 python Update
CentOS Errata and Security Advisory 2011:0491 Moderate Upstream details at : https://rhn.redhat.com/errata/RHSA-2011-0491.html The following updated files have been uploaded and are currently syncing to the mirrors: ( md5sum Filename ) i386: d311dcb943078e6f675e981107f42918 python-2.3.4-14.10.el4.i386.rpm 683bc6672708daa9bda4d63013f7ceb3 python-devel-2.3.4-14.10.el4.i386.rpm
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