User Portlet User Portlet

Kyle Martin
Discussions
Import _should_ be able to handle this, which is why there isn't a proper error message I believe. If it were an intended limitation it would likely be better documented. In any event we're looking to address this in a future release.
With your current code you'd need some looping mechanism to iterate the If statement over each possible value for i, j, and k. If you just want to replace every non-zero element with 1, however, I would just do the following (using Replace, and...
``` FullSimplify[a^b (c^d)^b == a^b c^(d b), b \[Element] Integers && d \[Element] Integers] ``` Gives True as well (all I did was replace Simplify with FullSimplify). Generally I just use FullSimplify. It can take a little longer, but many...
I think specifying the proper PlotRange explicitly may get you what you're after: ``` Graphics[{PointSize[Small], Point[{1, 1}], Point[{0, 0}]}, ImageSize -> {25, 25}, PlotRange -> {{0, 1}, {0, 1}}] // ColorNegate ``` ![image][1] The...
I think you underestimate how much memory that would require (and how large a number this is). Let's just assume we store a list of numbers from 1, to your number, 1921773217311523519374373. We'll store each number as a 128-bit integer, as that's...
Hello, I'd recommend [contacting][1] Wolfram's customer support team. They should be able to help ensure that your account is properly configured, and if not, assist in getting you up and running. [1]:...
Shot in the dark as I'm not familiar with what's going on, but are you able to upgrade to Mathematica 11.3? That may resolve the issue.
Kasi, We'd be happy to glance at what could be going wrong. Go ahead and fill out the form I linked to previously, and I can make sure this is something that is looked at. Thanks Kyle
Hello, Functions in Mathematica, including [`While`][1], are always written with a first capital letter, so `while[xx +zz =2 && yy +ww =0]` isn't recognized as anything useful by the language. There are a few other syntax issues in your code,...
Running `PacletUpdate["PresenterTools"]` from a notebook should resolve the issue. If not let me know.