User Portlet User Portlet

Discussions
I am using wolfram desktop, but I assume it’s the the same for Mathematica. It’s a universal binary, so if you right click on the bundle in your applications folder and select “Get Info” there is a little check box to run it using Rosetta. It will...
It's true that it's not symmetric exchanging only `i` with `j`, but it is symmetric exchanging both `i` with `j` and `p` with `q`. This is what the symmetry `{{2,1,4,3},1}` indicates--equivalently `{Cycles[{{1,2},{3,4}],1}`. The symmetry you are...
Because these are irregular time series, meaning that the times of our data points can have gaps between them, TimeSeriesShift will produce output that won’t align with the following business day. I think an easier approach is to get everything in...
I have a notebook that gets data from the NFL’s API and solves a Mixed Integer Second Order Cone Program that makes picks for my football pool each week. I’d like to set it up to run in the cloud on a schedule and then email my pick in, however I am...
Your syntax for FindMinimum is wrong. If you want to minimize over multiple variable they all need to wrapped in a list. Try ...
You can use replacement rules to plug in coefficient values and Table to iterate over values of n from -20 to 20 Table[ -I^-n*\[Zeta] * ( BesselJ[n,\[Kappa]*\[Zeta]] * BesselY[-1+n,\[Kappa]*\[Zeta]] -...
`MinDate` gives the same results as `DateInterval["Min"]`, but what is the way to do the comparison? For example: MinDate[DateInterval[{InfinitePast,Today}]]==InfinitePast returns unevaluated. I would like to be able to test an arbitrary...
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...