6,492 reputation
1934
bio website
location Europe
age
visits member for 1 year, 2 months
seen 19 mins ago
stats profile views 202

Jan
23
revised Assign the output of a loop
deleted 42 characters in body
Jan
22
comment Why does the PlotStyle not apply globaly when I plot multiple data files
@belisarius Done, although I'm not sure that this question deserves to be kept open.
Jan
22
answered Why does the PlotStyle not apply globaly when I plot multiple data files
Jan
22
comment Why does the PlotStyle not apply globaly when I plot multiple data files
If you want all the points to be black and equal size, then define the plot style in this way: PlotStyle -> {{Black, PointSize[0.01]}}. Note the extra {} brackets. Without those, Mathematica cycles between black and automatically chosen colors with the size defined by PointSize.
Jan
21
revised How can I transform a list of binary digits into integers?
added 10 characters in body
Jan
21
answered Accessing data on local machine from remote kernel
Jan
18
comment Accessing data on local machine from remote kernel
@Ajasja I looked at the documentation for DistributeDefinitions, but I don't get it how I should use it. For instance, f[n_] := PrimeQ[2^n - 1] and then DistributeDefinitions[f]; should transport the definition to all kernels. But when I try f[2] from the FE connected to the remote kernel the output is f[2] instead of True.
Jan
18
asked Accessing data on local machine from remote kernel
Jan
18
comment Running a Mathematica program without Mathematica
You have posed a question few days ago that was closed, because it was vague and incomplete. If you want to get answers you should put more effort in the way you frame your questions.
Jan
18
comment Running a Mathematica program without Mathematica
By the way, welcome to Mathematica.SE! I suggest the following: 1) As you receive help, try to give it too, by answering questions in your area of expertise. 2) Read the faq! 3) When you see good questions and answers, vote them up by clicking the gray triangles, because the credibility of the system is based on the reputation gained by users sharing their knowledge. Also, please remember to accept the answer, if any, that solves your problem, by clicking the checkmark sign!
Jan
18
revised Running a Mathematica program without Mathematica
deleted 44 characters in body; edited title
Jan
18
comment Running a Mathematica program without Mathematica
You can create programs that run in a CDF Player.
Jan
16
comment How to place legend labels for Histogram and ListLinePlots correctly?
Take a look at FrameLabel.
Jan
16
comment How to texturize ordinary plot
Possible duplicates (5185), (1300) and (17565).
Jan
16
comment Loop inside For[] does not work
@Vaggelis_Z If you accept an answer, it means that you're satisfied with that answer, so you should also upvote it.
Jan
16
comment How to figure out how to make WolframAlpha work predictably
@KevinO'Bryant Try to match the way "input interpretation" stores different datasets. What I mean is that when you ask WolframAlpha to search for "Cardinals in 2010 NFL" the "input interpretation" field displays "Arizona Cardinals" and you could use this as a hint on how to ask for this sort of information. Redefine your TeamNames by substituting the team names with the longer version that matches the "input interpretation", e.g. "Arizona Cardinals" instead of just "Cardinals".
Jan
15
revised Spreading colors in ListDensityPlot
added 1805 characters in body
Jan
15
comment Spreading colors in ListDensityPlot
@Vaggelis_Z To use Show properly you should replace the ListPlot[..., opts] part with Show[ListPlot[..., opts],Plot[Sin[20 x], {x, -1, 1}]]' and it will superimpose the additional plot within the frame defined by ListPlot`.
Jan
15
comment Efficiently extracting an array subset given a separate array
@ChristopherBowman You're right, the solutions provided in this answer are pretty slow on large datasets.
Jan
15
comment Spreading colors in ListDensityPlot
@Vaggelis_Z To make the colorbar the same size as the frame of the ListPlot use this ImagePadding -> {{60, 20}, {60, 20}} for the ListPlot and this ImagePadding -> {{20, 60}, {60, 20}} for the colorbar.