User Portlet User Portlet

Discussions
Thanks for the help! Finally I go with your second suggestion to configure a separate Rosetta kernel following the instructions from...
T is transpose-symmetric {1->2, 3->4} In:=(T = Table[ ((i - j) - p + q)^2 , {i, 4}, {j, 5}, {p, 3}, {q, 2}]) == Table[ ((j - i) - q + p)^2 , {i, 4}, {j, 5}, {p, 3}, {q, 2}] Out:= True Tensorsymmetry[] ...
The current failure is somewhat expected since the cloud has security restrictions on setting environment variables and the notion of a home directory is slightly different between the kernel process and the cloud user account. However, placing...
Thank you Nicholas, I tried working with your code and got closer to my target. I managed a 50 day moving average, which was interesting on upst, and questionable, seems like there is a mistake here?? Unless one or two very large jumps are...
Your syntax for FindMinimum is wrong. If you want to minimize over multiple variable they all need to wrapped in a list. Try ...
Ah, I misunderstood the question. How about infinitePastQ[interval_DateInterval] := Not@FreeQ[interval, -Infinity] infinitePastQ@DateInterval[{InfinitePast, Today}] (* True *) infinitePastQ@DateInterval[{InfinitePast,...
That is a matrix that represents scale matrix parameter of the wishart distribution. This is the covariance matrix of one row of H, so in your case, it would be the identity matrix of size equal to the number of columns of H. The first parameter of...
The command is obj = CloudExport[frames, "GIF"] To make it loop, use obj = CloudExport[frames, "GIF", AnimationRepetitions->Infinity] This will create a private object by default, but you can publish a public copy of it it for...
I would like to know this as well, but actually for the opposite reason—I have a large MIP program modelled in Mathematica that I want to export to run remotely on NEOS. It’s worth noting that the new Optimization methods are usually pretty...
According to the list of unsupported cloud functions, `ExternalEvaluate` won’t run in the cloud due to security restrictions. You’d need a separate server or cloud environment to run NodeJS and then interface with it from WL code running in the cloud...