User Portlet User Portlet

David Gathercole
Discussions
![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...
Afternoon everyone, I've been rendering Encapsulated PostScript (.eps) graphics to insert into LaTeX documents with Mathematica for a long time. It seems with 12.0 the export to this format has changed under the hood, now leveraging Cairo 1.15.4....
Hello David, May you please let me know how to export all the angles with coordinates in a text or excel file? I am pretty unfamiliar to Mathematica so struggling to get it. Regards, Mirtunjay
Yes, there is. You need to download the style file, and save locally on your computer. Then, if you want to reformat any existing (or new) notebook without copying the content, you choose Format -> Stylesheet -> Other ![see an illustration screen...
Hi all, I am a long time Mathematica coder, and work in other functional languages. I am a passable user of C++, though this is usually quite pedestrian. I've taken my second serious run at WSTP development today, and come up short. I wish to...
![enter image description here][3] - another post of yours has been selected for the [Staff Picks][1] group, congratulations ! We are happy to see you at the top of the ["Featured Contributor" board][4]. Thank you for your wonderful contributions,...
![enter image description here][3] - another post of yours has been selected for the [Staff Picks][1] group, congratulations ! We are happy to see you at the tops of the ["Featured Contributor" board][4]. Thank you for your wonderful...
You are completely right David! Somehow I assumed that was due to the domineering qualities of red: > **Red** - is a bold color that commands attention! Red gives the impression of seriousness and dignity, represents heat, fire and rage, it is...
You can log your data manually, and plot this via ListPlot3D. The axes can be removed, or you can use Ticks specification to insert the correct labels. For example: Ticks -> {{}, {Log[10^#], 10^#} & /@ Range[0, 5]} This plot option...
Or, in this case: Thread[{{1, 2, 3, 4}, {11, 12, 13, 14}}] or MapThread[List, {{1, 2, 3, 4}, {11, 12, 13, 14}}] or Partition[Riffle[{1, 2, 3, 4}, {11, 12, 13, 14}], 2] or Table[{{1, 2, 3, 4}[[i]], {11, 12, 13,...