Qurak

Plot data

Guide pratique 17 étapes, exécutées dans l'ordre dans une même session. Chaque étape a été exécutée sur le moteur et la sortie ci-dessous est ce qu'elle a produit.

Étape 1
sdata = Table[1. Sin[2 i], {i, 0, 2 Pi, Pi / 12}]
Sortie
{0., 0.5, 0.8660254037844386, 1., 0.8660254037844386, 0.5, 0., -0.5, -0.8660254037844386, -1., -0.8660254037844386, -0.5, 0., 0.5, 0.8660254037844386, 1., 0.8660254037844386, 0.5, 0., -0.5, -0.8660254037844386, -1., -0.8660254037844386, -0.5, 0.}
Étape 2
ListPlot[sdata]
Sortie
-Graphics-
Étape 3
ListPlot[sdata, Filling -> Axis]
Sortie
-Graphics-
Étape 4
ListPlot[sdata, PlotStyle -> {PointSize[Medium], Red}]
Sortie
-Graphics-
Étape 5
ListLinePlot[sdata]
Sortie
-Graphics-
Étape 6
cdata = Table[1. Cos[i  / 2], {i, 0, 2 Pi, Pi / 12}];

Pas de sortie - cette étape prépare quelque chose pour la suivante.

Étape 7
ListLinePlot[{sdata, cdata}]
Sortie
-Graphics-
Étape 8
ListPolarPlot[cdata]
Sortie
-Graphics-
Étape 9
data = Table[Sin[j ^ 2 + i ^ 2], {i, 0, Pi, Pi / 30}, {j, 0, Pi, Pi / 30}];

Pas de sortie - cette étape prépare quelque chose pour la suivante.

Étape 10
Length[data]
Sortie
31
Étape 11
ListPlot[{data[[1]], data[[19]]}]
Sortie
-Graphics-
Étape 12
ListLinePlot[{data[[1]], data[[19]]}]
Sortie
-Graphics-
Étape 13
ListPointPlot3D[data]
Sortie
-Graphics3D-
Étape 14
ListPlot3D[data]
Sortie
-Graphics3D-
Étape 15
ListDensityPlot[data]
Sortie
-Graphics-
Étape 16
ListContourPlot[data]
Sortie
-Graphics-
Étape 17
Manipulate[ListPolarPlot[Table[Cos[i  / n] ^ m, {i, -k Pi, t Pi, Pi / d}], PlotStyle -> {PointSize[s], Red}, ImageSize -> {400, 400}, Axes -> None, PlotRange -> {{-1.1, 1.1}, {-1.1, 1.1}}], {{n, 0.32}, 0.1, 5, 0.01}, {m, 1, 4, 1}, {{t, 4.14}, 2, 6}, {{d, 100}, 10, 200, 10}, {{k, 4}, -1.5, 8}, {{s, 0.006}, 0.003, 0.01, 0.001}]
Sortie
Manipulate[ListPolarPlot[Table[Cos[i/n]^m, {i, -(k*Pi), t*Pi, Pi/d}], PlotStyle -> {PointSize[s], Red}, ImageSize -> {400, 400}, Axes -> None, PlotRange -> {{-1.1, 1.1}, {-1.1, 1.1}}], {{n, 0.32}, 0.1, 5, 0.01}, {m, 1, 4, 1}, {{t, 4.14}, 2, 6}, {{d, 100}, 10, 200, 10}, {{k, 4}, -1.5, 8}, {{s, 0.006}, 0.003, 0.01, 0.001}]

Fonctions utilisées

Recettes connexes

Toutes les recettes · Référence des fonctions · Utiliser ceci depuis un client MCP