Group Abstract Group Abstract

Message Boards Message Boards

Help with creating an applet

Posted 3 years ago
POSTED BY: Ehud Behar
3 Replies

How can we export this example, with Export, in a gif file to look the same on my Moodle page?

Posted 3 years ago

An example, using Manipulate

serie = ComplexExpand@ReIm@ReplaceAll[z -> \[Xi] + I \[Psi]][Accumulate[List @@ Normal@Series[Exp[z], {z, 0, 3}]]];

Manipulate[
    expz = ReIm@Exp[First[z] + I Last[z]];
    pts = serie /. {\[Xi] -> First[z], \[Psi] -> Last[z]};
    Graphics[{
        PointSize@Large,
        Green, Point@expz,
        Red, Point@pts
        }, Axes -> True, PlotRange -> {{-2, 10}, {-2, 5}}
    ],
    {{z, {1.5, 1}}, Locator},
    {expz, None}, {pts, None}
 ]
POSTED BY: Hans Milton
Posted 3 years ago

Thanks a lot. I haven't run your exapmle yet, but I am looking for a more quantitative answer.

POSTED BY: Ehud Behar
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard