Search the web
Sign In
New User? Sign Up
langsmiths · Language Smiths
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2033 - 2062 of 2746   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2033
... times ... well, then you have good random numbers (actually, similar is if you use linux...). rand on cygwin is crappy, but it is close enough to random...
cr88192
Offline Send Email
Aug 1, 2004
10:09 am
2034
... There is a guarantee that short holds at least -32767..32767. Usually it holds -32768..32767. There are exotic architectures where it has 32 bits because...
Marcin 'Qrczak' Kowal...
qrczak2
Offline Send Email
Aug 1, 2004
12:13 pm
2035
... it ... sizeof ... Usually it ... bits ... ok. ... find ... size. ... knows ... halves ... yes, either is possible. actually, given the fact that x86 is...
cr88192
Offline Send Email
Aug 1, 2004
12:55 pm
2036
... I know - that's why I keep mentioning things which are already done, and done well, ready to be used :-) Why do you write everything yourself? I try to...
Marcin 'Qrczak' Kowal...
qrczak2
Offline Send Email
Aug 1, 2004
2:07 pm
2037
... people. ... usually because this is how I typically approach things. I don't like lib dependencies, and I am not that fond of using other peoples' code. I...
cr88192
Offline Send Email
Aug 1, 2004
3:07 pm
2038
for various reasons I decided to rewrite my expression parser to have operator precedence (partly this was related to the expression parser getting ugly with...
cr88192
Offline Send Email
Aug 5, 2004
5:25 pm
2039
Why do so many programming languages these days have complex number support built in? It seems like such an obscure feature, yet lots of languages, such as...
Daniel Ehrenberg
littledanehren
Offline Send Email
Aug 10, 2004
3:25 am
2040
... yes, this and bignums. someone else had recently asked "why have them?". I don't know really. it is quite doubtful that most software would even use the...
cr88192
Offline Send Email
Aug 10, 2004
5:33 am
2041
... Maybe it's Lisp envy: http://www.cs.washington.edu/ai/cltl/clm/node20.html#SECTION00614000000000000000 I'm not sure if complex counts as "in the library"...
Steven Shaw
steshaw
Offline Send Email
Aug 10, 2004
1:59 pm
2042
... I guess it depends on the language and the language designers intent. In many cases, directly supported features are easier to use than library features -...
Donald McLean
dfranmclean
Offline Send Email
Aug 10, 2004
2:27 pm
2043
... Complex numbers aren't *that* obscure. Actually, quite the opposite- they show up all the time in a lot of modelling of physical phenomenon. For example,...
Brian Hurt
bhurt42
Offline Send Email
Aug 10, 2004
2:47 pm
2044
... String concatenation is used much more often than imaginary numbers. ... Python, Scheme, and D (my 3 example languages) have excelent facilities for doing...
Daniel Ehrenberg
littledanehren
Offline Send Email
Aug 10, 2004
3:03 pm
2045
... opposite- they ... For ... for ... OGG ... values- ... hmm, often I see these represented with plain floats or fixed-point values (in c at least). ... For ...
cr88192
Offline Send Email
Aug 10, 2004
4:12 pm
2046
... Well, you can have arbitrary order vectors, and simply interpret a complex number as a 2-vector and a quaternion as a 4-vector. However, the fun of...
Rafael Kaufmann Nedal
Rafael_Kaufmann
Offline Send Email
Aug 10, 2004
7:22 pm
2047
... It has certainly been more than enough to keep Fortran in use to this day. But I would say to cr88192 what I said to Paul Graham about objects in Arc: if...
Jecel Assumpcao Jr
jeceljr
Offline Send Email
Aug 10, 2004
7:53 pm
2048
... though. ... term ... However, ... which ... such ... yes, they may be worth looking into. I don't get those who were trying to flog off a form of...
cr88192
Offline Send Email
Aug 11, 2004
12:20 am
2049
... practice. ... about ... this ... in ... only ... I never said I didn't like them, just I don't really use them or know how much they are used (vs. other...
cr88192
Offline Send Email
Aug 11, 2004
12:29 am
2050
... Some languages do that... C# does it that way. I had to draw for someone once the difference between nested and two-dimensional. ... This looks like...
Max Battcher
world_maker
Offline Send Email
Aug 11, 2004
5:25 am
2051
... One of the many things language designers need to determine is this particular problem. Of course, sometimes it is more clear, such as in Smalltalk where...
Kyle Hayes
kyle@...
Send Email
Aug 11, 2004
6:16 am
2052
... more ... instead ... ok, cool. so at least it was not too weird... ... indexing as ... attribute ... people ... ok. cool. wandering thoughts apparently led...
cr88192
Offline Send Email
Aug 11, 2004
6:48 am
2053
... more ... instead ... in ... yes. I use a c style syntax. the idea made sense to me, as doing it like: mat[y][x] would require simulating an intermediate...
cr88192
Offline Send Email
Aug 11, 2004
6:56 am
2054
... You can. It's called geometeric algebra, although you really need linear algebra to appreciate it (abstract algebra doesn't hurt either). I'm told that...
Brian Hurt
bhurt42
Offline Send Email
Aug 11, 2004
2:23 pm
2055
... Actually, there are other reasons Fortran is still in use to this day- including inertia and the fact that Fortran *still* produces faster numeric code...
Brian Hurt
bhurt42
Offline Send Email
Aug 11, 2004
2:37 pm
2056
... IIRC, you map quaternions and operations there on onto 2x2 matricies and operations there on. I forget exactly how the mapping works, and am too lazy to...
Brian Hurt
bhurt42
Offline Send Email
Aug 11, 2004
2:51 pm
2057
... Sorry - thay came out a bit harsh. Of course I would encourage you to learn more about complex numbers (and Paul more about objects), but what I meant was...
Jecel Assumpcao Jr
jeceljr
Offline Send Email
Aug 11, 2004
3:07 pm
2058
... one ... term ... linear ... I'm told ... ok, cool. I may try to look into it more (I have verified that none of my math books really cover compex numbers...
cr88192
Offline Send Email
Aug 11, 2004
5:06 pm
2059
... I think a non-systems programming language needs seemless integration with bignums. It's not that you always need numbers bigger than 2^32 or 2^64, but it ...
Daniel Ehrenberg
littledanehren
Offline Send Email
Aug 11, 2004
5:08 pm
2060
... quaternions ... element ... issues. ... matricies and ... am too ... ok. it didn't seem that useful though. ... more ... instead ... matricies, ... you ......
cr88192
Offline Send Email
Aug 11, 2004
5:13 pm
2061
... The problem with this is that bignums generally have orders of magnitude worse performance than hardware-based ints. -- "Usenet is like a herd of...
Brian Hurt
bhurt42
Offline Send Email
Aug 11, 2004
5:18 pm
2062
... know ... to ... your ... that ... nearly ... ok, I was looking into them some more earlier. ... implemented ... practical ... 30 ... in a ... you ... your ...
cr88192
Offline Send Email
Aug 11, 2004
5:21 pm
Messages 2033 - 2062 of 2746   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help