Displaying 2 results from an estimated 2 matches for "solecisms".
2012 Apr 10
3
WoW not running under Wine
Hey, I installed Wine the other day on my Crunchbang linux machine. Trying to completely switch over to linux. I have a no install version of WoW that I used on my Windows xp machine and it worked great, besides the low frame rate but the laptop I was using is old (Dell Inspiron 1525). I then try to us it under Wine I can't even see the login screen for WoW, I can hear the sounds and
2003 Jul 14
2
Subsetting a matrix
...would have expected is that Z0 should come out as a 1x2 matrix:
[,1] [,2]
[1,] 1.2 1.3
with dim(Z0) --> [1] 1 2
but it does not -- it does not have matrix status. I know it will try
to behave politely if forced into matrix-algebra society, but it betrays
its lack of true poise in solecisms like the following:
> Z0%*%Z1[1:2,1]
[,1]
[1,] 4.3
> Z1[1:2,1]%*%Z0
[,1]
[1,] 4.3
One of these should be a scalar (in fact the first, given how Z0 was
created), and the other a 2x2 matrix. Z0 simply does not know that you
have to behave differently if seated on someo...