User Portlet
Discussions |
---|
First I define a simple test animation: p = Manipulate[ Plot[y, {x, 0, 1}, PlotRange -> {{0, 1}, {0, 1}}], {y, 0, 1}] Then I export it to an .avi file, which I later convert into an animated .gif with Photoshop: ... |
When I have a differential equation like DSolve[{ x'''''''[t] == d7, x''''''[0] == d6, x'''''[0] == d5, x''''[0] == d4, x'''[0] == d3, x''[0] == d2, x'[0] == d1, x[0] == d0}, x[t],... |
I am currently using Mathematica 9 (My system is Windows 7) and refused to upgrade to 10.0.0 because of a bunch of errors I experienced on other machines. Now I heard the 10.0.2 bugfix was released 2 days ago, see... |
First I define the 5th order derivative of my function of t to be sin(t): f = Sin[t]; tMax = Pi/2; nds = NDSolve[{ x'''''[t] == f, x''''[0] == 0, x'''[0] == 0, x''[0] == 0, x'[0] ==... |
I have one Graphics3D and one ParametricPlot3D, which I need to combine. Unfortunately, the Show[] Command does not work here, maybe because I use a Manipulate[] Command. The Prolog-> also does not work. Plot1, the Graphics 3D, is a set of 3 Points... |