User Portlet
Featured Contributor
Discussions |
---|
&[Wolfram Notebook][1] [1]: https://www.wolframcloud.com/obj/cdafdfd7-b15f-4ac9-ac64-130cc222d660 |
The "Spy Museum" in Washington DC is also a good place to see an Enigma machine: https://www.spymuseum.org/exhibition-experiences/about-the-collection/collection-highlights/four-rotor-enigma-machine/ |
To make your workflow even faster, instead of saving the screenshots to the desktop, you could save them to the clipboard (use Control-Command-Shift-4 and drag) and then just paste into your Mathematica notebook. This way you don't generate temporary... |
I find the ExpressionLineDiff resource function to be very useful: https://resources.wolframcloud.com/FunctionRepository/resources/ExpressionLineDiff |
Was the power cord connected? This can have a large impact. |
You can do whatever layout you want and `ExpressionCell` will take care of the conversion. For two buttons you want something like `Row[{Button[],Button[]}]` |
Hello Ernesto, Check out the Input/Output table (second row) in this link: https://www.wolfram.com/cdf/adopting-cdf/cdf-and-mathematica-comparison.html In summary, the InputField is probably disabled on purpose for your license . You can... |
Here I move a list of 101 strings into a new notebook: CreateDocument[ExpressionCell[RandomWord[101]]] You could also insert into an existing notebook. |
Could you provide examples of valid math code that starts with "=" or ">" ? I think that those shortcuts are made under the presumption that you would never start a command with those characters. |
If you don't like having too many & and # you can also do this: Thread[{{1, 2, 3, 4}, {1, 4, 9, 16}}] // OperatorApplied[ListPlot][PlotStyle->Black] For more than one option, put them in a list: Thread[{{1, 2, 3, 4}, {1, 4,... |