Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Re:Yay (Score 1) 2987

I think Lott is opinionated, inflammatory, and important. I suspect he is probably wrong in his concealed carry conclusions. However in a complex matter like this, as in pretty much any scientific inquiry, those of us who are not specialists should rely on the consensus of the experts. In this case, there is no consensus on how concealed carry affects murder rates, so holding a strong opinion is unjustified. (It follows that we can expect a lot of ideological shouting.)

One thing that is known to raise murder rates is high and sustained unemployment. Neither concealed carry laws nor unemployment rates appear relevant to this shooting, however.

Comment Re:Numerical Python (Score 2) 204

I mostly use python these days [snip] Matlab's syntax is just so slick by comparison:

Matlab: foo = [1 2;3 4] Python: foo= array([[1,2],[3,4]]) R: foo - matrix(c(1,2,3,4),2,2)

NumPy includes a matrix library: foo=mat('1 2;3 4'). In general, Python's syntax beats Matlab's syntax
hands down. (In this particular case there is almost a tie, but a trivial advantage for Matlab. I spend apporximately 0% of my time typing in data for array construction, and I suppose that is true of most users.) For help transitioning, see http://www.scipy.org/NumPy_for_Matlab_Users.

Python

Submission + - NumPy and SciPy for .Net (codeplex.com)

aisaac writes: "The Python NumPy and SciPy packages have been ported to run under IronPython. These packages are widely used for scientific computing with Python. Developers are invited to help port them to Mono as well."

Comment Re:Politics (Score 1) 874

On the contrary, this is quite normal. Ice caps expand and recede all the time and have been for centuries. As MIT climatologist Richard Lindzen pointed out in WSJ today, you're discarding a well-established understanding of the history of the planet by making that claim.

I also wonder how many who quote Lindzen on climate change also quote Lindzen on smoking?

Submission + - Verizon Kills Usenet Service 2

aisaac writes: Verizon has announced that it will not longer provide newgroup service. Service has already ceased.

Comment Re:Show me some example code (Score 1) 382

R handles non-matrix data structures much, much better than Matlab does

This advantage is even larger for Python. Use the NumPy package for efficient array handling and basic linear algebra. Use SciPy for optimization and statistics. Use Matplotlib for amazingly powerful 2d graphics. And if you occasionally need R, which does have an wonderfully deep statistical library, you can access it with rpy.

Censorship

Submission + - Libraries Defend Open Access

aisaac writes:
Publisher plans to equate public access to federally funded research with government censorship and the destruction of peer review were exposed earlier this year (Nature, January 25, 2007). In an open letter last month, Rockefeller University Press castigated the Partnership for Research Integrity in Science & Medicine (PRISM) for using distortionary rhetoric in a coordinated PR attack on open access. Now the Association of Research Libraries has released an Issue Brief addressing this PR campaign in more detail. The Issue Brief exposes some of the distortions used to persuade key policy makers that recent gains open access scientific publishing pose a danger to peer reviewed scientific research, free markets, and possibly the future of western civilization. As an example of what the publishers backing PRISM hate, consider the the wonderfully successful grants policy of the National Institutes of Health, which requires papers based on grant-funded research to be published in PubMed Central.

Slashdot Top Deals

An Ada exception is when a routine gets in trouble and says 'Beam me up, Scotty'.

Working...