For those who are not aware, I have just discovered that the graphics
performance of VMWare Player is *MUCH* better than that of VMWare
Server. The latter is apparently optimized for disconnected headless
operation and access via a network, and so it uses some heavyweight
remote protocol for all g
On Sunday 10 June 2007 11:10:37 am Jeff Strunk wrote:
> On Saturday 09 June 2007 3:01:02 pm rex wrote:
> > While compiling Numpy using MKL9.1 is fresh in my mind, I'd like to
> > update some things in the /Installing_SciPy/Linux page. I've registered
> > as a user, but still am not allowed to edit
On Saturday 09 June 2007 3:01:02 pm rex wrote:
> While compiling Numpy using MKL9.1 is fresh in my mind, I'd like to
> update some things in the /Installing_SciPy/Linux page. I've registered
> as a user, but still am not allowed to edit the page. What's required?
>
> (I run a couple of Mediawiki si
in octave
repmat([],2,3) works well:
ans = [](0x0)
I guess in MATLAB too
but numpy tile() can't handle it correctly:
>>> from numpy import *
>>> tile(array([1]), (2,3))
array([[1, 1, 1],
[1, 1, 1]])
>>> tile(array([]), (2,3))
Traceback (innermost last):
File "", line 1, in
File "/us