User Portlet User Portlet

Discussions
Try a file name builder that injects the desired prefix into the file name part, instead of prepending it to the relative file path with StringJoin, like this "Teilchendichte_test\\someData123.txt.dat"[mcode]In[ ]:= datPrefix[prefix_String,...
Your result from Cases can be used by Pick[mcode]In[ ]:= bool = Cases[t, {a_, b_, c_} :> MemberQ[{39, 45}, a + b + c]] Out[ ]= {False, True, True, True, False, True, False, True, True} In[ ]:= Pick[t, bool] Out[ ]= {{2, 18, 19}, {3, 14, 22}, {4, 12,...
The outter List layer of your data was giving FindFit some heartburn. I had to remove that with First. The result of FindFit is replacement rules of the form {R1 -> val1, R2 -> val2, R3 -> val3, ...}. These rules will directly replace the matching...
Plot can take all three solutions at the same time. In this example Chop helps by filtering out small complex components.[mcode]Manipulate[ s = Solve[A == (1/(1 - Exp[EA]*x)^2 + B*Exp[y]/(1 + x*Exp[y]))*x, x]; Plot[Chop[x /. s], {y, 0, 15},...
Wondering if M10 will have anything in it for these mixed linear models.
Check DownValues[myCHcc] to see how many different definitions you have created. You will find that the input myCHcc[1] is being intercepted by the one with the pattern _Integer before getting to the one with Conditional /;. By reusing the same...
Include the Quantity wrapper around t in the integrand. [mcode]In[ ]:= Integrate[Quantity[5, "Meters"/"Seconds"^2]*Quantity[t, "Minutes"], {Quantity[t, "Minutes"], Quantity[0, "Seconds"], Quantity[10, "Seconds"]}] Out[ ]= Quantity[250, "Meters"]...
Claire Danes was in the 1998 (Liam Neeson) version and Anne Hathaway was in the 2012 (Hugh Jackman) version of Les Mis. That's not a link. Check the films Romeo+Juliet and The Odd Life of Timothy Green, ...
You are absolutly correct in the observation, that the generic variable # inside (# + # &) has no way of knowing the first # comes from the outside Map and the second # comes from the inside Map. This inside and outside indexing is already handeled...
Give the location of centers of the vectors to be drawn to VectorPlot3D using VectorPoints option as a list of points.[mcode]points = Join @@ Table[{i, j, .5}, {i, -1, 1, .25}, {j, -1, 1, .25}]; VectorPlot3D[{0, 0, Cos[x] Cos[y]}, {x, -\[Pi]/2,...