User Portlet User Portlet

Discussions
Try to contact Paul directly, maybe through LinkedIn. Maybe he has updated code. You could also try to send the old notebooks to some AI system and ask it to translate them to a newer .nb format. Let us know if this works.
Evaluate the line below in you notebook and will create a new notebook with all cells except Input and Code cells. You could put it at the end of your notebook and evaluate just this cell. I am sure there is a better method, so this is just a...
`FindRoot` has attribute `HoldAll`. Therefore FF does evaluate in a way you do not expect. I would just use `StepMonitor`. Herr a quick fix: FF[xx1_, xx2_] := Module[ {xxx1 = xx1, xxx2 = xx2, FF1, FF2}, ...
In Eclipse, go to Window / Preferences / Wolfram Then click "Edit..." in the "Wolfram Engine Installation" box. Then just change the Installation Path, FrontEnd Location and Kernel Location by hand. Then click Apply and Close. All works now. ...
I figured out why not all freqs worked: I should not have changed all Solve operations to NSolve. See my note at the top of the notebook. Now it just works, in about 4 minutes. If your program can be rewritten in a purely symbolic way I doubt,...
Try this for a start: FILENAME = "test.csv"; Column[ MapIndexed[DateListPlot[{#1}, PlotLabel -> Row[{"Column ", First[#2]}]] & , First[ Import[ FILENAME, {"CSV", "Data"} ] ] /. {yyyy_Integer, MM_,...
In a corporate world a Wolfram Enterprise Private Cloud installation on a company server, accessible only to the intranet or selected users, could very well be an approved way of easily sharing Notebooks, packages and scrips. I am sure if Wolfram...
Maybe this does what you want? DynamicModule[{tmp}, Row[{ "tst1" , Spacer[4] , Slider[ Dynamic[tmp , (tmp = #; Echo[tmp]) & ] , {1, 5, 1} , Appearance...
SetOptions[SelectedNotebook[],Background->LightGray];
One possibility to store data in a cell is by using TaggingRules. Like, e.g., CurrentValue[PreviousCell[], {TaggingRules, "mydata"}] = 42