Qurak

Plot data

إرشادات 17 خطوات تُشغَّل بالترتيب في جلسة واحدة. كل خطوة نُفِّذت على المحرك والمخرج أدناه هو ما أنتجته.

الخطوة 1
sdata = Table[1. Sin[2 i], {i, 0, 2 Pi, Pi / 12}]
المخرجات
{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.}
الخطوة 2
ListPlot[sdata]
المخرجات
-Graphics-
الخطوة 3
ListPlot[sdata, Filling -> Axis]
المخرجات
-Graphics-
الخطوة 4
ListPlot[sdata, PlotStyle -> {PointSize[Medium], Red}]
المخرجات
-Graphics-
الخطوة 5
ListLinePlot[sdata]
المخرجات
-Graphics-
الخطوة 6
cdata = Table[1. Cos[i  / 2], {i, 0, 2 Pi, Pi / 12}];

لا مخرجات - هذه الخطوة تجهّز شيئًا للخطوة التالية.

الخطوة 7
ListLinePlot[{sdata, cdata}]
المخرجات
-Graphics-
الخطوة 8
ListPolarPlot[cdata]
المخرجات
-Graphics-
الخطوة 9
data = Table[Sin[j ^ 2 + i ^ 2], {i, 0, Pi, Pi / 30}, {j, 0, Pi, Pi / 30}];

لا مخرجات - هذه الخطوة تجهّز شيئًا للخطوة التالية.

الخطوة 10
Length[data]
المخرجات
31
الخطوة 11
ListPlot[{data[[1]], data[[19]]}]
المخرجات
-Graphics-
الخطوة 12
ListLinePlot[{data[[1]], data[[19]]}]
المخرجات
-Graphics-
الخطوة 13
ListPointPlot3D[data]
المخرجات
-Graphics3D-
الخطوة 14
ListPlot3D[data]
المخرجات
-Graphics3D-
الخطوة 15
ListDensityPlot[data]
المخرجات
-Graphics-
الخطوة 16
ListContourPlot[data]
المخرجات
-Graphics-
الخطوة 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}]
المخرجات
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}]

الدوال المستخدمة

وصفات ذات صلة

كل الوصفات · مرجع الدوال · استخدم هذا من عميل MCP