User Portlet User Portlet

Discussions
syntax error: Log10 [96717311574016] * can't be followed by [16777216^7 * 8^2].
I've heard there was a conventional debugger in the WorkBench. It is very old and apparently unmaintained. You can still download it but I was unable to get it to work in Eclipse. There is a debugger function for notebooks, but it has very odd...
There's no evidence given so far that says `DumpSave` doesn't work. Here's an example that does work. populations = ExampleData[{"Dataset", "StatePopulations"}]; DumpSave["pop.mx", populations]; Now either quit the kernel or exit...
thanks ! i only need up to 2nd order so itll defenetliy do
On GitHub I can find several Mathematica packages working with either quaternions or octonions. But none that covers both, the hyper complex numbers. [https://github.com/search?q=Quaternions%20language%3AMathematica&type=repositories][1] ...
I was going to add this from the docs of `D[]`: > D returns generic results that may not account for discontinuities, cusps or other special points This is the case for `Kronecker[x]`. However, the following seems wrong (should be `Pi*x`, not...
Daniel Lichtblau already mentioned that! Thanks! Here's what you can do Sasha: altQuotientRemainder[m_Integer, n_Integer?Negative] := -QuotientRemainder[-m, n]; altQuotientRemainder[m_Integer, n_Integer] := QuotientRemainder[m, n] ...
Thank you! I am confronting the same issue, using the online course environment. Style[Purple,100] delivers a small (standard) purple swatch in a larger carriage-return area of empty space (I do not have the vocab to describe this area, but it...
Try this: dataset1 = RandomVariate[NormalDistribution[10, 2], 100]; dataset2 = RandomVariate[TriangularDistribution[{8, 12}], 100]; BoxWhiskerChart[{dataset1 -> Orange, dataset2 -> Blue}] ![enter image description here][1] ...
Hans : I am so grateful to you. This does solve this issue I've been fighting for months... Best regards, Jean-Michel