| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 11 months |
| seen | May 19 at 6:54 | |
| stats | profile views | 30 |
|
Jan 24 |
comment |
LF line break instead of CR+LF when exporting text files on Windows I get {97, 98, 99, 10, 97, 98, 99} from v9, so I guess they fixed something. |
|
Jan 24 |
revised |
LF line break instead of CR+LF when exporting text files on Windows added 5 characters in body; edited body; added 46 characters in body |
|
Jan 24 |
answered | LF line break instead of CR+LF when exporting text files on Windows |
|
Jan 22 |
awarded | Nice Answer |
|
Jan 21 |
revised |
How can I connect Mathematica to Clojure? previously said "Lisp" but this is specifically about Clojure/JLink |
|
Jan 21 |
suggested | suggested edit on How can I connect Mathematica to Clojure? |
|
Jan 20 |
comment |
How to substitute the Skip function in special cases? I'm glad your problem is solved. If you feel like your question has been answered, please mark that answer as ACCEPTED. You have a 14% accept rate; this is not good on StackExchange. Thanks. |
|
Jan 19 |
revised |
How to substitute the Skip function in special cases? added 6 characters in body; edited body |
|
Jan 19 |
revised |
How to substitute the Skip function in special cases? added 67 characters in body |
|
Jan 19 |
answered | How to substitute the Skip function in special cases? |
|
Jan 16 |
comment |
ReadList problem related to Record type Yeah, this is how I would do it too. Know where each item type (Word, Number) leaves the stream position, and insert "dummy" Character-items in the ReadList spec to consume the terminators. You could write blank[_String] = Sequence[] and it might be faster. |
|
Jan 16 |
revised |
ReadList problem related to Record type edited body |
|
Jan 16 |
revised |
ReadList problem related to Record type added 88 characters in body; added 5 characters in body |
|
Jan 16 |
revised |
ReadList problem related to Record type added 6 characters in body; edited body |
|
Jan 16 |
answered | ReadList problem related to Record type |
|
Jan 14 |
comment |
How can I get Mathematica to produce better Fortran code? Did you really write FormatType -> FotranForm in your code? That's not gonna work. |
|
Dec 30 |
revised |
Write and Read to StreamPosition added 4 characters in body |
|
Dec 30 |
answered | Write and Read to StreamPosition |
|
Nov 13 |
comment |
using Mathematica's matrix multiplication in C++ It's also worth mentioning that Mathematica won't do anything with matrices to multiply besides passing them to Intel MKL (software.intel.com/en-us/intel-mkl), a high speed implementation of the BLAS (Basic Linear Algebra System) that most software uses for matrix stuff. So it wouldn't gain you very much that you couldn't do by calling MKL yourself. |
|
Oct 22 |
comment |
Import[ ] drops leading zeros from data when importing a CSV file To get your commas discarded automatically, try these definitions: ignore[_String] := Sequence[] and igc := ignore[Character]. Then you can use igc in your specifier list in place of Character. The character will be read as a String, placed in an ignore[] head, and then evaluation will remove it. |