Top new questions this week:
|
Version 9 introduced TemporalData but, truth be told, the documentation doesn't suggest that one can do much with it. Many of us have probably assumed we'd be better off sticking with the date-value …
|
I would like to take the following data:
insertvalues = {r, x};
insertpositions = {{1}, {5}};
origlist = {a, b, c, d, e, f, g};
and generate output that looks like this:
{r,a,b,c,d,x,e,f,g}
…
|
It seems there are a lot of related topics but I haven't found an answer.
I want to automatically quit Mathematica after some procedures are done but dialog window appears:
1 + 1;
…
|
I want Mathematica to send me an email when the computation is finished. To that end, I have a cell with SendMail[...] which I place behind my computation in the evaluation queue. The problem I have …
|
Is there a more compact way to represent these constraints:
NMaximize[{a+b+c,a <= 5 && b <= 5 && c <= 5}, {a,b,c}]
like for x in {a,b,c}, x <= 5 or something.
|
I am trying to quantify the proportions of various components in a greyscale image (backscattered electron image of a polished rock sample).
Here is the original image:
bse = …
|
I try to filter sublists of a list which match a pattern.
test = {{"String1", "a"}, {"String2", "b"}, {"String3",
"a"}, {"String4", "a"}};
The result should be:
result = {{"String1", "a"}, …
|
Greatest hits from previous weeks:
|
So I have a graph with multiple lists, for e.g.
data = {{1,2}, {3,4}, {3,5}, {2,3} . . .}
If I then do ListLinePlot[Table[{#1,Log[b,#2]}&@@@data, {b,1,10,2}]] I have no way to generate a legend …
|
I have been using Mathematica for about a year. It is the first language that I have attempted to learn. I'm still very much a newbie, but there are moments I feel more like I am waving than drowning. …
|
Can you answer these?
|
I have a number of computers which all might need to use the same (client) configuration for the Wolfram Lightweight Grid at some point.
I know that there are ways to programmatically set certain …
|
I have this notebook:
arg1 = "input.txt";
arg2 = "output.txt";
u1 = Import[arg1, "Table"];
u2 = u1(*extremely complicated and long chain of operations*);
Export[arg2, u2]
and I would like to run it …
|
The system under consideration here is a generalization of the one I discussed in this problem. Qualitatively, I am trying to solve a system of coupled nonlinear (up to order 4 in the dep variables) …
|