Mathematica - Kurve zeichnen < Mathematica < Mathe-Software < Mathe < Vorhilfe
|
Aufgabe | Ich möchte in Mathematica eine Abbildung von [mm] \mathbb{R} \rightarrow \mathbb{R}^{2} [/mm] zeichnen, und zwar: [mm] x\rightarrow \vektor{\cos(x) \\ \sin(x)}. [/mm] |
Wie mache ich das?
Mein Versuch, F[x_] := [mm] \vektor{Cos[x] \\ Sin[x]} [/mm] zeichnet mir bei Plot[F[x], {x, -Pi, Pi}] ein komisches Schaubild, aber keinen Kreis.
|
|
|
|
> Ich möchte in Mathematica eine Abbildung von [mm]\mathbb{R} \rightarrow \mathbb{R}^{2}[/mm]
> zeichnen, und zwar: [mm]x\rightarrow \vektor{\cos(x) \\ \sin(x)}.[/mm]
>
> Wie mache ich das?
> Mein Versuch, F[x_] := [mm]\vektor{Cos[x] \\ Sin[x]}[/mm]
> zeichnet mir bei Plot[F[x], {x, -Pi, Pi}] ein komisches
> Schaubild, aber keinen Kreis.
Hello Mr. o ,
what you need is not "Plot", but "ParametricPlot" .
Here is an example:
ParametricPlot[{Cos[5t], Sin[3t]}, {t, 0, 2π}, AspectRatio -> Automatic];
LG Al-Chw.
|
|
|
|
|
Meinen herzlichsten Dank an den klugen Al-Chwarizmi!
|
|
|
|