User Portlet User Portlet

Gustavo Delfino
Discussions
I understand that under Windows fonts now look larger. What I don't understand is why some fonts look smaller. In particular I am talking about the suggestions when typing a command and the command templates as shown below. These are now tiny...
I am confused. What is `x^*` ?
For a temporary solution, take a look at: https://community.wolfram.com/groups/-/m/t/1756114 > Since cloud notebooks don't support the feature-rich "two-dimensional" input found in desktop Mathematica yet, we added a new control that allows you...
You can export a list of rules or an association to JSON, but what you have is a different Mathematica expression (a long formula). Any Mathematica expression can be converted to JSON using the "ExpressionJSON" format: ...
In case you are interested into the functional programming approach, this may get you started: aaa = RandomReal[{0, 1}, {10, 4}] aaa // Transpose // ReplaceAll[{x_, y_, vals__} :> Map[{x, y, #} &, {vals}]] // ...
I just noticed that Sander made this available as a resource function: https://resources.wolframcloud.com/FunctionRepository/resources/PhaseUnwrap Very useful!
I reorganized your notebook a bit. The main changes are: 1. Removing your print statement. 2. Adding Initialization to your Manipulate so that it works as soon as the notebook is open. 3. Many of the text cells were split. It is a good...
Another option is using `NumberLinePlot` With[{opts={Ticks->None,Axes->False,AxesStyle->White,PlotRange->{{1990,2000},Automatic}}}, Grid[ {{"City","Date",""}, ...
This may help you: https://resources.wolframcloud.com/FunctionRepository/resources/CombinePlots
I find this very useful to copy data from Excel to Mathematica: https://mathematica.stackexchange.com/a/14659/251 It is a VBA script for Excel that does the conversion automatically when you copy with a modifier key (CTRL+SHIFT+C instead of...