User Portlet User Portlet

Chad Knutson
Discussions
The website you are trying to import is built with AngularJS. I don't think there is any way to 'get' its contents other than viewing in a modern web browser. Perhaps you could ask that company if they have an api that you could programmatically...
In the doc page for Binarize (under Details and Options), is this statement: Binarize works with 2D and 3D images. It converts multichannel and color images into grayscale images, then produces an image in which every pixel has value 0 or 1. ...
Ah, Jeff, I should have recognized your name! Hmmm, I'm not sure the best solution for this. Have you tried wrapping the .NET call with TimeConstrained? I'm not sure if that will allow you to interrupt the call, but at least it will give you a...
Wolfram Research has another cloud product called [Wolfram Enterprise Private Cloud][1] , which features all of the functionality that you have seen in the 'Wolfram Cloud'. Because it is 'private', owners of these clouds can configure them to allow...
My machine is Windows 10 with 32 GB RAM and the same version of Mathematica. I'm not sure what is causing the problem for you.
One option is to create a duplicate version of the notebook that will be for other users. In that notebook, you can delete the input cell (click on the cell bracket, then delete key), leaving only the output cell. Programmatically, you can...
Recall from your initial post that your professor's code takes the last part of the $CommandLine script and sets that value to 'n'. So, if you are typing 'n' in that position, Mathematica will set n=n, which is an acceptable expression at that...
This is very nice, Mark. An alternative approach for a web-based app would be to use APIFunctions deployed to the WolframCloud for the assessment. There are some pretty nice tools to help students typeset math nicer in web browsers. I like...
One approach is to export the expression to MathML. An example: In[1]:= myEq=(x+y)/z; In[2]:= ExportString[myEq,"MathML"] Out[2]= x + y z Copy the...
I'm not sure at which point you are stuck. Are you not able to get the image data to Mathematica? It seems the manufacturer has a method to return an image (GetImage function). I suggest writing a simple C# class that would load the...