Mehrere Plots in einem Graph < Mathematica < Mathe-Software < Mathe < Vorhilfe
|
Status: |
(Frage) beantwortet | Datum: | 19:18 Fr 30.04.2010 | Autor: | Wuffel |
Hallo,
Ich möchte in Mathematica einen Konturplot erstellen, und in den Plot soll eine Linie gezeichnet werden.
Wenn ich das über
ContourPlot[{f[x,y]==0,g[x,y]},{x,...},{y,...}]
versuche wird jedoch g[x,y] auch nur als Linie geplottet und nicht als Konturplot. Kennt jemand dafür eine Lösung? Danke im Vorraus.
|
|
|
|
Moin,
und
1: | Show[{
| 2: | ContourPlot[x^2 + y^2, {x, -5, 5}, {y, -5, 5}],
| 3: | Plot[x, {x, -5, 5}, PlotStyle -> {Thick, Red}]
| 4: | }]
|
oder
1: | ContourPlot[x^2 + y^2, {x, -5, 5}, {y, -5, 5},
| 2: | Epilog :> {Thick, Red, Line[{{-5, -5}, {5, 5}}]}]
|
tut's nicht?
Cheers
Patrick
|
|
|
|
|
Status: |
(Mitteilung) Reaktion unnötig | Datum: | 11:22 Sa 01.05.2010 | Autor: | Wuffel |
Danke sowas wie show ist genau das was ich gesucht habe :)
|
|
|
|