Top new questions this week:
|
If I create a Dataset:
dataSet = Dataset[
AssociationThread[{"a", "b", "c", "d", "e"} -> #] & /@ RandomReal[{-1, 1}, {1000, 5}]
];
It should be easy to use a plotting function on it
…
|
Lately, and by lately I mean since version 7 or so, the number of atomic expressions in Mathematica constantly grew. In former times only the native types like integers and optimised arrays were …
|
A friend of mine showed me this example, it's a test comparing LengthWhile to a self-made lengthwhile written in a direct and conventional way:
lengthwhile[x_, t_] := Module[{i = 0, l = Length@x}, …
|
Still, I'll use the implementation of the 1D FDTD method (you can simply understand it as a kind of explicit finite difference scheme for the Maxwell's equation) as the example. Just for completeness, …
|
I don't know if this is a silly question, but it really baffles me. So please help me understand this behavior.
list=RandomInteger[100,100]
I interpret the (silly) code above as randomly generating …
|
Suppose I have different functions: Total, Mean and Max and the following Dataset
SeedRandom[0]
dataSet = Dataset[AssociationThread[{"a", "b", "c", "d"} -> #] & /@ RandomReal[4, {10, 4}]]
…
|
I have written
RepeatingDigits[n_Integer] :=
Module[{id = IntegerDigits @ n, x},
x = Differences /@ Map[Partition[id, #] &, Range[Length[id]/2]];
If[# === {}, Return @ False, x = Length @ …
|
Greatest hits from previous weeks:
|
I consider myself a pretty good Mathematica programmer, but I'm always looking out for ways to either improve my way of doing things in Mathematica, or to see if there's something nifty that I haven't …
|
I understand Mathematica can't assign the results of a Solve to the unknowns because there may be more than 1 solution. How can I assign the 4 values of following result to variables?
|
Can you answer these?
|
We are trying to plot a figure as below from data points. This version is a postprocessed plot (in Illustrator) just to obtain the skew axes. The rest is plotted with ListLogLogPlot[]. Any idea on how …
|
It seems WRI has changed the way fonts are dealt with in Mathematica 9 and 10.
The following command
Export["test.eps", "This is a nice formula"]
yields this
in Mathematica 9 (after import to …
|
I am inserting lots of data into the preinstalled SQL Database in MM:
con= OpenSQLConnection["demo"] > SQLCreateTable[con, SQLTable["anyname"], SQLcolums] > ...
I am running out of disk space on my …
|