You can subscribe to this list here.
2000 |
Jan
(8) |
Feb
(49) |
Mar
(48) |
Apr
(28) |
May
(37) |
Jun
(28) |
Jul
(16) |
Aug
(16) |
Sep
(44) |
Oct
(61) |
Nov
(31) |
Dec
(24) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(56) |
Feb
(54) |
Mar
(41) |
Apr
(71) |
May
(48) |
Jun
(32) |
Jul
(53) |
Aug
(91) |
Sep
(56) |
Oct
(33) |
Nov
(81) |
Dec
(54) |
2002 |
Jan
(72) |
Feb
(37) |
Mar
(126) |
Apr
(62) |
May
(34) |
Jun
(124) |
Jul
(36) |
Aug
(34) |
Sep
(60) |
Oct
(37) |
Nov
(23) |
Dec
(104) |
2003 |
Jan
(110) |
Feb
(73) |
Mar
(42) |
Apr
(8) |
May
(76) |
Jun
(14) |
Jul
(52) |
Aug
(26) |
Sep
(108) |
Oct
(82) |
Nov
(89) |
Dec
(94) |
2004 |
Jan
(117) |
Feb
(86) |
Mar
(75) |
Apr
(55) |
May
(75) |
Jun
(160) |
Jul
(152) |
Aug
(86) |
Sep
(75) |
Oct
(134) |
Nov
(62) |
Dec
(60) |
2005 |
Jan
(187) |
Feb
(318) |
Mar
(296) |
Apr
(205) |
May
(84) |
Jun
(63) |
Jul
(122) |
Aug
(59) |
Sep
(66) |
Oct
(148) |
Nov
(120) |
Dec
(70) |
2006 |
Jan
(460) |
Feb
(683) |
Mar
(589) |
Apr
(559) |
May
(445) |
Jun
(712) |
Jul
(815) |
Aug
(663) |
Sep
(559) |
Oct
(930) |
Nov
(373) |
Dec
|
From: Greg W. <gre...@gm...> - 2006-10-08 22:20:40
|
On 10/8/06, Daniel Mahler <dm...@gm...> wrote: > > >>> a > array([0, 0]) > >>> b > array([0, 1, 0, 1, 0]) > >>> c > array([1, 1, 1, 1, 1]) > Well for this particular example you could do a=array([len(b)-sum(b), sum(b)]) Since you are just counting the ones and zeros. This next one is a little closer for the case when c is not just a bunch of 1's but you still have to know how the highest number in b. a=array([sum(c[b==0]), sum(c[b==1]), ... sum(c[b==N]) ] ) So it sort of depends on your ultimate goal. Greg -- Linux. Because rebooting is for adding hardware. |
From: Alan G I. <ai...@am...> - 2006-10-08 16:04:44
|
On Sun, 8 Oct 2006, Matt Knox apparently wrote:=20 > I have a custom Date class which allows creation of=20 > different frequency Dates (annual, monthly, etc..). Two=20 > dates of the same frequency can be subtracted, and=20 > integers can be added to a Date, with the obvious results=20 > in each case. I store these dates in arrays currently=20 > using the "object" dtype.=20 Just making sure you know about http://www.egenix.com/files/python/mxDateTime.html If you need something that is not there, Marc-Andr=E9 Lemburg may be willing to add it, if others might need it too. Cheers, Alan Isaac |
From: Nadav H. <na...@vi...> - 2006-10-08 06:55:54
|
There is a "tensortdot" function in numpy1.0rc1 Nadav -----Original Message----- From: num...@li... on behalf of = Charles R Harris Sent: Sun 08-Oct-06 06:54 To: num...@li... Cc:=09 Subject: [Numpy-discussion] tensor product Hmmm, I notice that there is no longer a tensor product. As it was the only = one of the outer, kron bunch that I really wanted, l miss it. In fact, I always thought outer should act like the tensor product for the other binary operators too. Anyway, mind if I put it back? Chuck |
From: Bill B. <wb...@gm...> - 2006-10-08 06:17:31
|
Yeh, I spoke too soon. Tried a little example and it seemed to work. I don't get a traceback here, but your example doesn't work as expected, either. I get [1,1] as the answer with numpy 1.0rc1. Probably it should be an exception, though. It seems to work if len(b)<=len(a) and when no indices are repeated in b. --bb On 10/8/06, Daniel Mahler <dm...@gm...> wrote: > Thanks Bill. > Thats what I was hoping for, > but I get > > >>> a > array([0, 0]) > >>> b > array([0, 1, 0, 1, 0]) > >>> c > array([1, 1, 1, 1, 1]) > >>> a[b]+=c > Traceback (most recent call last): > File "<stdin>", line 1, in ? > IndexError: invalid index > > whereas i would like to get > > array([3, 2]) > > > > On 10/8/06, Bill Baxter <wb...@gm...> wrote: > > Yes, that'd be > > a[b] += c > > > > On 10/8/06, Daniel Mahler <dm...@gm...> wrote: > > > Is there a 'loop free' way to do this in Numeric > > > > > > for i in arange(l): > > > a[b[i]]+=c[i] > > > > > > where l == len(b) == len(c) > > > > > > thanks > > > Daniel > > > > ------------------------------------------------------------------------- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share your > > opinions on IT & business topics through brief surveys -- and earn cash > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > _______________________________________________ > > Numpy-discussion mailing list > > Num...@li... > > https://lists.sourceforge.net/lists/listinfo/numpy-discussion > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Numpy-discussion mailing list > Num...@li... > https://lists.sourceforge.net/lists/listinfo/numpy-discussion > |
From: Daniel M. <dm...@gm...> - 2006-10-08 06:03:40
|
Thanks Bill. Thats what I was hoping for, but I get >>> a array([0, 0]) >>> b array([0, 1, 0, 1, 0]) >>> c array([1, 1, 1, 1, 1]) >>> a[b]+=c Traceback (most recent call last): File "<stdin>", line 1, in ? IndexError: invalid index whereas i would like to get array([3, 2]) On 10/8/06, Bill Baxter <wb...@gm...> wrote: > Yes, that'd be > a[b] += c > > On 10/8/06, Daniel Mahler <dm...@gm...> wrote: > > Is there a 'loop free' way to do this in Numeric > > > > for i in arange(l): > > a[b[i]]+=c[i] > > > > where l == len(b) == len(c) > > > > thanks > > Daniel > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Numpy-discussion mailing list > Num...@li... > https://lists.sourceforge.net/lists/listinfo/numpy-discussion > |
From: Bill B. <wb...@gm...> - 2006-10-08 05:49:02
|
Yes, that'd be a[b] += c On 10/8/06, Daniel Mahler <dm...@gm...> wrote: > Is there a 'loop free' way to do this in Numeric > > for i in arange(l): > a[b[i]]+=c[i] > > where l == len(b) == len(c) > > thanks > Daniel |
From: Daniel M. <dm...@gm...> - 2006-10-08 05:36:20
|
Is there a 'loop free' way to do this in Numeric for i in arange(l): a[b[i]]+=c[i] where l == len(b) == len(c) thanks Daniel |
From: Matt K. <mat...@ho...> - 2006-10-08 05:27:08
|
> Matt Knox wrote:> > Could someone please point me to/provide me with a ba= sic example of > > creating a user defined type?> > > > Here is my complet= ely naive attempt which obviously doesn't work...> >> > import numpy> > > = > class myType(numpy.void):> > def __init__(self,val):> > self.= val =3D val> > > > testType =3D numpy.dtype(myType)> >> > val1 =3D myType(= 5)> > val2 =3D myType(6)> > > > foo =3D numpy.array([val1,val2],testType)>= > > > > > Any help would be greatly appreciated. Thanks,> > =20 > A "true" user-defined data-type can only be done in C.> > However. You c= an use the "VOID" data-type to create a type with > multiple fields. What= do you want to do with your user-defined data-type.>> -Travis Thanks for the reply Travis. =20 I have a custom Date class which allows creation of different frequency Dat= es (annual, monthly, etc..). Two dates of the same frequency can be subtrac= ted, and integers can be added to a Date, with the obvious results in each = case. I store these dates in arrays currently using the "object" dtype. =20 However, the problem with this is that I can't tell the frequency of the Da= tes in the array without inspecting invidual elements of the array, or subc= lassing the array object itself. I'd like to be able to have each frequency= of date as a data type (DateAnnual, DateMonthly, etc...). It just seems l= ike a cleaner approach to have these dates defined as data types. =20 I would be open to the idea of defining this in C, but I don't really have = any examples to work with for that either. Many thanks for any advice/suggestions you can provide. =20 - Matt =20 _________________________________________________________________ Be one of the first to try Windows Live Mail. http://ideas.live.com/programpage.aspx?versionId=3D5d21c51a-b161-4314-9b0e-= 4911fb2b2e6d= |
From: Charles R H. <cha...@gm...> - 2006-10-08 04:54:48
|
Hmmm, I notice that there is no longer a tensor product. As it was the only one of the outer, kron bunch that I really wanted, l miss it. In fact, I always thought outer should act like the tensor product for the other binary operators too. Anyway, mind if I put it back? Chuck |
From: Robert K. <rob...@gm...> - 2006-10-08 04:42:18
|
Alan G Isaac wrote: > On Fri, 06 Oct 2006, Robert Kern apparently wrote: >> http://pida.berlios.de/ > > Can this be installed under Windows? > (Looks unlikely.) It might be possible if you have a Windows build of PyGTK, but not with the gvim integration. However, pida also supports other PyGTK-accessible editor widgets. See its documentation for details. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlying truth." -- Umberto Eco |
From: Travis O. <oli...@ie...> - 2006-10-08 04:28:41
|
Matt Knox wrote: > Could someone please point me to/provide me with a basic example of > creating a user defined type? > > Here is my completely naive attempt which obviously doesn't work... > > import numpy > > class myType(numpy.void): > def __init__(self,val): > self.val = val > > testType = numpy.dtype(myType) > > val1 = myType(5) > val2 = myType(6) > > foo = numpy.array([val1,val2],testType) > > > Any help would be greatly appreciated. Thanks, > A "true" user-defined data-type can only be done in C. However. You can use the "VOID" data-type to create a type with multiple fields. What do you want to do with your user-defined data-type. -Travis |
From: Gennan C. <gn...@co...> - 2006-10-07 23:16:28
|
Hi! We just bought MKL and icc for OS X. I don't think I will try icc for numpy and scipy. But anyone ever tried compiled with os x' MKL? How to add options to make it work?? Gen |
From: Matt K. <mat...@ho...> - 2006-10-07 20:12:03
|
Could someone please point me to/provide me with a basic example of creatin= g a user defined type? =20 Here is my completely naive attempt which obviously doesn't work...import n= umpy =20 class myType(numpy.void): def __init__(self,val): self.val =3D va= l =20 testType =3D numpy.dtype(myType) val1 =3D myType(5)val2 =3D myType(6) =20 foo =3D numpy.array([val1,val2],testType) =20 =20 Any help would be greatly appreciated. Thanks, =20 - Matt Knox =20 =20 _________________________________________________________________ Be one of the first to try Windows Live Mail. http://ideas.live.com/programpage.aspx?versionId=3D5d21c51a-b161-4314-9b0e-= 4911fb2b2e6d= |
From: Alan G I. <ai...@am...> - 2006-10-07 18:43:50
|
On Fri, 06 Oct 2006, Robert Kern apparently wrote: > http://pida.berlios.de/ Can this be installed under Windows? (Looks unlikely.) Cheers, Alan Isaac |
From: Pauli V. <pa...@ik...> - 2006-10-07 18:32:36
|
la, 2006-10-07 kello 20:01 +0200, Karol Langner kirjoitti: > I still get a floating point exception when running the numpy tests, though. I > haven't checked out numpy for some time, so I don't now if it's a bug, or if > it's my setup. The same thing happens when I use my manually built > atlas/lapack and the built-in debian atlas/lapack libraries. I'd be grateful > for a comment on if this is just me: > > >>numpy.test(10,10) > [output] > Check reading the top fields of a nested array ... ok > Check reading the nested fields of a nested array (1st level) ... ok > Check access nested descriptors of a nested array (1st level) ... ok > Check reading the nested fields of a nested array (2nd level) ... ok > Check access nested descriptors of a nested array (2nd level) ... ok > check_access_fields > (numpy.core.tests.test_numerictypes.test_read_values_plain_multiple) ... ok > check_access_fields > (numpy.core.tests.test_numerictypes.test_read_values_plain_single) ... ok > check_cdouble (numpy.tests.test_linalg.test_det)Floating point exception If you are using Debian stable (sarge), you might need to read http://www.its.caltech.edu/~astraw/coding.html#libc-patched-for-debian-sarge-to-fix-floating-point-exceptions-on-sse2 In short, libc in Debian stable has a bug that makes programs crash with SIGFPE when SSE instructions are invoked. The solution is to recompile libc from patched sources, and replace libm.so.6. At least for me this fixed crashes in numpy. Pauli Virtanen |
From: Karol L. <kar...@kn...> - 2006-10-07 18:02:15
|
On Saturday 07 of October 2006 15:00, Karol Langner wrote: > > > From: num...@li... [mailto:numpy- > > > dis...@li...] On Behalf Of Karol Langner > > > Sent: 07 October 2006 14:07 > > > To: NumPy List > > > Subject: [Numpy-discussion] problem with lapack_lite / BLAS > > > > > > Dear list, > > > > > > I'm trying to compile ATLAS 3.6.0 and LAPACK 3.0 (+ update) and use > > > them with > > > the latest numpy (checked out today). Installation seems to be fine, > > > all the > > > libraries are detected. When I import numpy, however, I get this: > > > > > > <snip> > > > ImportError: /home/langner/apps/python/lib/python2.5/site- > > > packages/numpy/linalg/lapack_lite.so: > > > undefined symbol: xerbla_ > > > > > > Does anyone know where this comes from? OK... I am so angry at myself... I spent around 2 hours fiddling around with blas/lapack and numpy, and the problem was that I wasn't removing the 'build' directory between compiilations. Apparently it's not enough to run "setup.py clean" (I read this and forgot about it) to recompile lapack_lite.so. Now numpy imports fine and everything I use it for works as before (only a bit faster). Karol P.S. I still get a floating point exception when running the numpy tests, though. I haven't checked out numpy for some time, so I don't now if it's a bug, or if it's my setup. The same thing happens when I use my manually built atlas/lapack and the built-in debian atlas/lapack libraries. I'd be grateful for a comment on if this is just me: >>numpy.test(10,10) [output] Check reading the top fields of a nested array ... ok Check reading the nested fields of a nested array (1st level) ... ok Check access nested descriptors of a nested array (1st level) ... ok Check reading the nested fields of a nested array (2nd level) ... ok Check access nested descriptors of a nested array (2nd level) ... ok check_access_fields (numpy.core.tests.test_numerictypes.test_read_values_plain_multiple) ... ok check_access_fields (numpy.core.tests.test_numerictypes.test_read_values_plain_single) ... ok check_cdouble (numpy.tests.test_linalg.test_det)Floating point exception thanks! -- written by Karol Langner Sat Oct 7 19:41:58 CEST 2006 |
From: Greg S. <gs...@al...> - 2006-10-07 14:52:17
|
I fill in the credit-card form, press continue, and it comes back with "Some required information is missing"; the indicated missing info is the 'security code' you copy in to prove you are human, which I had entered. This happened 3 times in a row, and I am certain I got it right at least the last two (I even listened to the audio read-out the third time). So I am starting to get concerned that something is being intercepted.. I'm guessing that a paypal merchant is more likely to get attention from paypal than an accountless purchaser - any idea what's going on here? |
From: Karol L. <kar...@kn...> - 2006-10-07 13:00:32
|
On Saturday 07 of October 2006 14:20, Albert Strasheim wrote: > Hello all > > > -----Original Message----- > > From: num...@li... [mailto:numpy- > > dis...@li...] On Behalf Of Karol Langner > > Sent: 07 October 2006 14:07 > > To: NumPy List > > Subject: [Numpy-discussion] problem with lapack_lite / BLAS > > > > Dear list, > > > > I'm trying to compile ATLAS 3.6.0 and LAPACK 3.0 (+ update) and use them > > with > > the latest numpy (checked out today). Installation seems to be fine, all > > the > > libraries are detected. When I import numpy, however, I get this: > > > > <snip> > > ImportError: /home/langner/apps/python/lib/python2.5/site- > > packages/numpy/linalg/lapack_lite.so: > > undefined symbol: xerbla_ > > > > Does anyone know where this comes from? > > xerbla is an error handler for the LAPACK routines. Make sure you included > xerbla.f when building your LAPACK library. Check the symbols included in > the library with strings or objdump. > > Hope this helps. > > Cheers, > > Albert Yes, I know, and I checked this, and xerbla.o is in my lapack library, ad provides "xerbla_": langner@~/apps/linalg/lib: objdump -x liblapack.a | grep "xerbla.o" -A 100 xerbla.o: file format elf32-i386 rw-r--r-- 1000/1000 1380 Oct 6 17:51 2006 xerbla.o architecture: i386, flags 0x00000011: HAS_RELOC, HAS_SYMS start address 0x00000000 Sections: Idx Name Size VMA LMA File off Algn 0 .text 00000061 00000000 00000000 00000040 2**4 CONTENTS, ALLOC, LOAD, RELOC, READONLY, CODE 1 .data 0000006a 00000000 00000000 000000c0 2**5 CONTENTS, ALLOC, LOAD, RELOC, DATA 2 .bss 00000000 00000000 00000000 0000012c 2**2 ALLOC 3 .rodata 00000000 00000000 00000000 0000012c 2**0 CONTENTS, ALLOC, LOAD, READONLY, DATA 4 .rodata.cst4 00000004 00000000 00000000 0000012c 2**2 CONTENTS, ALLOC, LOAD, READONLY, DATA 5 .note.GNU-stack 00000000 00000000 00000000 00000130 2**0 CONTENTS, READONLY 6 .comment 00000026 00000000 00000000 00000130 2**0 CONTENTS, READONLY SYMBOL TABLE: 00000000 l df *ABS* 00000000 xerbla.f 00000000 l d .text 00000000 00000000 l d .data 00000000 00000000 l d .bss 00000000 00000000 l O .data 00000014 __g77_cilist_0.1 00000020 l O .data 0000004a __g77_format_9999.0 00000000 l d .rodata 00000000 00000000 l d .rodata.cst4 00000000 00000000 l d .note.GNU-stack 00000000 00000000 l d .comment 00000000 00000000 g F .text 00000061 xerbla_ 00000000 *UND* 00000000 s_wsfe 00000000 *UND* 00000000 do_fio 00000000 *UND* 00000000 e_wsfe 00000000 *UND* 00000000 s_stop RELOCATION RECORDS FOR [.text]: OFFSET TYPE VALUE (...) And this _is_ the library I point to in site.cfg. Karol -- written by Karol Langner Sat Oct 7 14:53:15 CEST 2006 |
From: <yu...@ya...> - 2006-10-07 12:41:56
|
:―― INFORMATION ―――――――――――――――――――――――――: 不正・悪質なサイトを一切排除しておりますので 安心してご利用ください。 http://love-match.bz/pc/01 :――――――――――――――――――――――――――――――――――: *・゜゜・*:.。. .。.:*・゜゜・*:.。..。:*・゜゜・*:.。..。:**・゜゜・* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ □■ 不倫・ワリキリ専門の無料出会いサイト『Love☆Match』 ----------------------------------------------------------------- 登録料・利用料 ・・・・・・・・・【無料】 メールの送受信 ・・・・・・・・・【無料】 ユーザーの検索 ・・・・・・・・・【無料】 掲示板の閲覧・書込み ・・・・・・【無料】 画像交換・アップロード ・・・・・【無料】 アドレス交換・電話番号交換 ・・・【無料】 ----------------------------------------------------------------- どれだけ使っても全て無料! http://love-match.bz/pc/01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ □■ いつでも女性ユーザーがいっぱい。その理由は? ----------------------------------------------------------------- PC&モバイルに対応!いつでもどこでも気軽に楽しめる! ----------------------------------------------------------------- 仕事中は携帯電話から、プライベートは自宅からのんびりと。 気になる相手といつでも繋がっているから、新密度も急速にUP。 http://love-match.bz/pc/01 ----------------------------------------------------------------- PCから簡単プロフィール作成。ネット初心者でもラクラク参加OK ----------------------------------------------------------------- 面倒な登録は一切不要。パソコンから簡単なプロフィールを作成して 初心者の方や女性でもすぐに参加できます。 http://love-match.bz/pc/01 ----------------------------------------------------------------- 自由恋愛対応!直電・直メ交換支援ツール ----------------------------------------------------------------- 基本的にメールアドレスや電話番号は非公開ですが 仲良くなった人だけにメールアドレスや電話番号を教える事ができます。 http://love-match.bz/pc/01 ----------------------------------------------------------------- 写真アップロードに対応!好みの相手を素早くCHECK! ----------------------------------------------------------------- 待ち合わせ場所にイメージとまったく違う人が来たら…。 ピュアックスなら会う前に写真交換ができるから、そんな不安も解消。 http://love-match.bz/pc/01 ----------------------------------------------------------------- スレッド掲示板で秘密のパートナー検索も効率UP! ----------------------------------------------------------------- メインの掲示板のほかにスレッド型の掲示板を設置。 メル友から秘密のパートナーまで目的別のユーザーが集う掲示板です。 http://love-match.bz/pc/01 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ □■ 毎日500人近くのユーザーが続々参加中!! □----------------------------------------------------------------- リエ(21歳/会社員) いつも1人でエッチなことを考えてます。 メールだといろいろ話せるんだけど、実際に会うとあまりしゃべれなく なっちゃうので、盛り上げてくれるような楽しい男の人いないかな? 引っ込み思案のせいか、男性経験はあまり無いんです。 優しく&楽しくリードしてくれる男性からのメール待ってます。 [写真有り] http://love-match.bz/pc/01 □----------------------------------------------------------------- 真菜(24歳/フリーター) 彼氏が浮気してて超アタマきたっ!まなだって遊びたい盛りだし、ずっと ガマンしてたのにさ!かっこいい人見つけて思いっきりふってやるつもりで 登録してみた(笑) [写真有り] http://love-match.bz/pc/01 □----------------------------------------------------------------- みさ(34歳/専業主婦) 殆ど家に帰ってこない仕事人間のだんなさまと二人きりの毎日で、ほんと 寂しい思いをしています。年下の男の子がいれば仲良くなりたいな。 年下の人とは付き合ったことがないので興味津々です(^^) [写真無し] http://love-match.bz/pc/01 □----------------------------------------------------------------- 恭子(28歳/会社員) 彼氏とはいつも同じようなセックスばかりでかなり冷め気味です。 誰かあたしと熱いセックスを楽しみませんか?めんどくさい事は 言いません。ただ、いつもと違うドキドキするような事がしたい だけなんです。 [写真無し] http://love-match.bz/pc/01 □----------------------------------------------------------------- ななこ(28歳/主婦) 半年前にだんなと別れて今は×1です。 夜のお仕事なので、昼間まったりと過ごしませんか? 心身ともに疲れ気味で、今、激しく癒されたいです。 [写真有り] http://love-match.bz/pc/01 □----------------------------------------------------------------- 祥子(31歳/クリエイター) 平日は18時くらいまでは大体仕事してるので、その後に食事したり 楽しく飲んだりできるパートナー希望です。年上でも年下でも かまいませんので気軽にメールを送って頂けると嬉しいです。 [写真有り] http://love-match.bz/pc/01 □----------------------------------------------------------------- ゅヵ`(20歳/学生) まずゎ会ってみないとはじまらなぃょね?! 横浜近辺の人で、いろんな意味でオトナな人は プロフ付きでめぇる送って☆ [写真有り] http://love-match.bz/pc/01 □----------------------------------------------------------------- 出会いサイトのサクラに騙されないように↓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ 【裏】無料の出会い情報 ------------------------------------------------------------- お金と時間を持て余している人妻の間で、噂になってるあのサイト [登録・利用料全て無料] http://love-match.jp/pc/?1 ------------------------------------------------------------- 彼女達が求めているのはこんな男性です。 ?年上女性にリードしてもらいたい、経験少なめの男性 ?体力・テクニックに自信が有る男性 男性会員が不足しています。我こそは、と思う方は今すぐ参加! [登録・利用料全て無料] http://love-match.bz/pc/01 ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ 広東省茂名市人民大街3-6-4-533 友誼網絡公司 139-3668-7892 |
From: Albert S. <fu...@gm...> - 2006-10-07 12:20:07
|
Hello all > -----Original Message----- > From: num...@li... [mailto:numpy- > dis...@li...] On Behalf Of Karol Langner > Sent: 07 October 2006 14:07 > To: NumPy List > Subject: [Numpy-discussion] problem with lapack_lite / BLAS > > Dear list, > > I'm trying to compile ATLAS 3.6.0 and LAPACK 3.0 (+ update) and use them > with > the latest numpy (checked out today). Installation seems to be fine, all > the > libraries are detected. When I import numpy, however, I get this: > > <snip> > ImportError: /home/langner/apps/python/lib/python2.5/site- > packages/numpy/linalg/lapack_lite.so: > undefined symbol: xerbla_ > > Does anyone know where this comes from? xerbla is an error handler for the LAPACK routines. Make sure you included xerbla.f when building your LAPACK library. Check the symbols included in the library with strings or objdump. Hope this helps. Cheers, Albert |
From: Matthew B. <mat...@gm...> - 2006-10-07 12:15:38
|
Hi, I am sorry, I am still struggling with object arrays - and here - numpy data types. Is there any easy way to explain why comparisons with numpy types give a different output from comparisons with non-numpy types: In [108]:oa = zeros((1,), dtype=object) In [109]:oa == int Out[109]:array([False], dtype=bool) In [110]:oa == int32 Out[110]:False Many thanks for your patience, Matthew |
From: Karol L. <kar...@kn...> - 2006-10-07 12:14:01
|
Dear list, I'm trying to compile ATLAS 3.6.0 and LAPACK 3.0 (+ update) and use them with the latest numpy (checked out today). Installation seems to be fine, all the libraries are detected. When I import numpy, however, I get this: Python 2.5 (r25:51908, Sep 27 2006, 17:40:29) [GCC 3.3.5 (Debian 1:3.3.5-13)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import numpy Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/langner/apps/python/lib/python2.5/site-packages/numpy/__init__.py", line 40, in <module> import linalg File "/home/langner/apps/python/lib/python2.5/site-packages/numpy/linalg/__init__.py", line 4, in <module> from linalg import * File "/home/langner/apps/python/lib/python2.5/site-packages/numpy/linalg/linalg.py", line 25, in <module> from numpy.linalg import lapack_lite ImportError: /home/langner/apps/python/lib/python2.5/site-packages/numpy/linalg/lapack_lite.so: undefined symbol: xerbla_ Does anyone know where this comes from? Cheers, Karol -- written by Karol Langner Sat Oct 7 14:02:46 CEST 2006 |
From: Calvagh M. <bo...@ko...> - 2006-10-07 07:27:54
|
Hi, VrAGRA for less http://www.ruishinimdesin.com =20 _____ =20 time-what had it done for my personal poisonous deadline! I groped for He was gray-haired, stern-faced, dressed in the same combat fatigues ask the right question. |
From: Charles R H. <cha...@gm...> - 2006-10-07 04:16:29
|
On 10/6/06, Robert Kern <rob...@gm...> wrote: > > Eric Emsellem wrote: > > Hi, > > > > I am looking for an IDE to develop python programs and I am not sure > > what to take. > > The two critical items for me are 1/ a good debugger (simple and > > efficient) 2/ something simple to manage the files. > > > > I would also very much like to keep some basic things such as (if > possible): > > - editing with gvim > > This probably is the most limiting factor. I use pida because it embeds > gvim > into a PyGTK frame with all of the IDE goodies around it. > > http://pida.berlios.de/ > > I believe it can use one of the PyGTK debugger GUIs, but I've never used > it. Pida looks nice, thanks for the pointer. Unfortunately, the mercurial support needs editing to make it work at a basic level. To make pida really work right for distributed repositories looks trickier because distributed version control doesn't necessarily have a central repository while the current pida interface looks to be based around that concept. Chuck |
From: Travis O. <oli...@ee...> - 2006-10-07 01:53:07
|
Bill Baxter wrote: >[There seem to have been some gmail delivery problems that prevented >my previous mail on this subject from being delivered] > >I've proposed that we fix repmat handle arbitrary dimensions before 1.0. > > http://projects.scipy.org/scipy/numpy/ticket/292 > >I don't think this is particularly controversial, just I'm guessing >no-one's found the time to look at my proposed fixes. And >gmail/sourceforge issues haven't helped either. > > Thanks for reminding us again. I don't think this is too bad of a deal. I propose to move repmat(A, M,N) to matlib.py and replace it in numpy with a function named tile(a, reps) That is more general-purpose. If this is not acceptable, please speak up. -Travis |