User Portlet User Portlet

Discussions
I'm a bit late following up here... Shenghui's note about the equivalence of altParallelTable's results with those of Table/ParallelSubmit/WaitAll is a good one. It's also worth pointing out that ParallelSubmit may be slower in most cases,...
Actually, based on how most of your original post is strangely italicized and the fact that the missing characters in each of your listings are "[ i ]", it seems that the original code you were given probably was working fine. You could edit your...
At a second glance, I realize FinishDynamic is exactly what's needed here. Add it to your definition of f, just after you set y to 2:[mcode]y = 1; f[] := Do[y = 2;...
It'll probably be best to go ahead and post the body of the 'potential' function. (Also post any supporting definitions it needs to work correctly.) In a case like this, I'd turn on the debugger (in the Evaluation menu), select "Break at Messages",...
From ref/LeastSquares: The vector [i]x[/i] is uniquely determined by the minimization only if Length[ [i]x [/i]] == MatrixRank[ [i]m [/i]]. Since the rank is...
Here's a demo of a way to do the transitions, but I didn't put in the carrying mechanism. It shouldn't be too hard, though. I'll add another update when I have some time. Update: I added carrying. In this example, adding past 9,999 works but...
This demonstrates an approach you could probably adapt. Basically, you could Inset a dynamic object showing your sequence of video frames into a Graphics expression that shows your...
Try this: Graphics[Dynamic[drawSystemReference[listBones, lmatrixBones]]] Basically, you want to make sure that you wrap Dynamic around the right parts of your expression. In your example above, you were giving your function Dynamic...
I asked around and was told that "ImageWithExif" is definitely not supported for Export with JPEG, so the example I gave above was misleading. On the other hand, I was informed that it should actually work as specified in the paragraph Jason noted: ...
Just a clarification: I'm assuming you're on Windows since the RLink paclet uses R 2.14.0 and the "RHomeLocation" option to use another installed version is only supported on Windows. To the best of my knowledge, RLink doesn't currently work with...