User Portlet User Portlet

Robert Nachbar
Discussions
PS. the PlotStyle option should be u2[x_] := 0.5 Log[x] + 0.8 Log[6] Plot[{u2[x], u1[x]}, {x, 0, 10}, PlotStyle -> {{Blue, Thickness[0.01]}, {Red, Thickness[0.01]}}]
use StringReplace[string, ")" ~~ Shortest[__] ~~ ":" -> "):"] Normal expression patterns take the shortest pattern by default, while string patterns take the longest. Note, I added the ":" to the rhs of the replacement rule. ...
Hi, Dorothy! Yes, it will have to be aGEDCOM format file for the data to be accessible to the functions in the package. It could be a lot of work to create that file by hand because there should be cross-referencing between individuals and...
To run the notebook for this post in version 12.0 of Mathematica make the following changes: 1) Replace the first input
The Manipulate function will allow you to easily attach sliders to parameters and dynamically update the plot as the sliders are moved. All the Wolfram Language documentation is available on-line. the landing page is [here][1]. Documentation for...
Several multiset functions are available in the Wolfram Function Repository: https://resources.wolframcloud.com/FunctionRepository/search/?i=multiset
MapThread takes a third argument for level specification that makes the data preparation a bit easier in this case. So instead of mapping MapThread over the threaded (transposed) data, just use In[139]:= barData = MapThread[Labeled, {data,...
Very nice deep dive into the data! I find it very curious that many of the national curves have very sharp, flat-topped "peaks" of about a week's duration. Do you know of an explanation for this feature? I suspect that they are reporting errors,...
It's not a question of precedence but one of parsing. WL does follow the traditional rules for order of operations in arithmetic. The FrontEnd parses the input and gives it to the Kernel for evaluation. To see how the FrontEnd interprets your input,...
No, the fractional lattice coordinates of the atoms and the symmetry elements of the space group are part of the input data in the CIF file. It could be adapted to tile 3D space with plesiohedra given the coordinates of their vertices, lists of...