User Portlet User Portlet

W. Craig Carter
Discussions
I created a new stack on AWS. It looks like the template is inserting "us-east" no matter what I do. Ah, there is a pull down menu on the AWS dashboard that asks you to specify your region: ![pull down tab at right][1] However, trying to...
Perhaps something along these lines will give you a direction to follow: {tMin, tMax} = MinMax[ T[[All, 3]]] T[[All, 3]] = (T[[All, 3]] - tMin) (tMax - tMin) ListPlot3D[T, ColorFunction -> "TemperatureMap"] ...
To see the evaluation steps ReplaceAll[A[1, B[1]], 1 -> "a"] // Trace
![enter image description here][2] -- you have earned ***Featured Contributor Badge*** ![enter image description here][1] Your exceptional post has been selected for our editorial column ***Staff Picks*** http://wolfr.am/StaffPicks and [Your...
Raymond, does the following give what you want? l = {{a, {a, a}}, {b, {b, {b}}}, {c, {c, {c, {c, c}}}}}; Flatten[Map[Flatten[#, Depth[#] - 3] &, l], 1] (* {a, {a, a}, b, b, {b}, c, c, c, {c, c}} *)
Since upgrading to Big Sur, I experience "random" restarts of my iMac when I run Mathematica (it appears to happen only with Mathematica) after anywhere between 20 minutes and 2 hours. There is no apparent cause, other than seemingly the Big Sur...
## WSTP server on iPad Pro Many have requested a fully featured version of Mathematica on the iPad. The new iPads with M1 chip definitely have the resource to run it. I understand the challenges for Wolfram to create an entirely new notebook UI...
This will give you the Form representation of the entity: Entity["PhysicalConstant", "ElectricConstant"] This will give you the Symbol associated with it: Entity["PhysicalConstant", "ElectricConstant"]["Symbol"] You can do this: ...
Here is how I would transform your data into cylindrical coordinates: dataForInterpolate = yourData /. {x_, y_, z_} :> With[{theta = ArcTan[x, y]}, {{Cos[theta], Sin[theta]}, z}]; You could also use...
It seems the OR statement in the Implicit region is not behaving as expected. As far as I can see plotting a single implicit region works. The solution of Hans allows for plotting them both, however you want something that works more general correct?...