Qurak

Add transparency to plots

वर्कफ़्लो 10 चरण, एक सत्र में क्रम से चलाए गए। हर चरण इंजन पर निष्पादित हुआ और नीचे का आउटपुट वही है जो उसने उत्पन्न किया।

चरण 1
eq = x ^ 2
आउटपुट
x^2
चरण 2
Plot[eq, {x, -2, 2}]
आउटपुट
-Graphics-
चरण 3
eq2 = -x ^ 2
आउटपुट
-x^2
चरण 4
eq = x ^ 4 + y ^ 4 - 5 x ^ 2 * y ^ 2
आउटपुट
x^4 - 5*x^2*y^2 + y^4
चरण 5
Plot3D[eq, {x, -3, 3}, {y, -3, 3}]
आउटपुट
-Graphics3D-
चरण 6
eq2 = -100 - x ^ 4 - y ^ 4 + 5 x ^ 2 * y ^ 2
आउटपुट
-100 - x^4 + 5*x^2*y^2 - y^4
चरण 7
Graphics[Disk[]]
आउटपुट
-Graphics-
चरण 8
Row[Table[
	Graphics[{Opacity[n], Disk[]}, ImageSize -> Scaled[.1]],
	{n, 0.1, 1, 0.3}]]
आउटपुट
-Graphics--Graphics--Graphics--Graphics-
चरण 9
Row[Table[
	Graphics[{Red, Opacity[n], Disk[]}, ImageSize -> Scaled[.1]],
	{n, 0.1, 1, 0.3}]]
आउटपुट
-Graphics--Graphics--Graphics--Graphics-
चरण 10
Manipulate[RegionPlot[
	{x - y ≥ t, x + y ≥ s}, {x, -3 Pi, 3 Pi}, {y, -3 Pi, 3 Pi},
	PlotPoints -> 30,
	PlotStyle -> {Directive[Red], Directive[Blue, Opacity[0.5]]}
	],
	Style["Solving the system of inequalities: x-y ≥ t and x +y ≥ s", Bold, 12],
	{{s, 0}, -20, 20}, {{t, 0}, -20, 20}
	]
आउटपुट
Manipulate[RegionPlot[{x - y >= t, x + y >= s}, {x, -3*Pi, 3*Pi}, {y, -3*Pi, 3*Pi}, PlotPoints -> 30, PlotStyle -> {Directive[Red], Directive[Blue, Opacity[0.5]]}], Solving the system of inequalities: x-y ≥ t and x +y ≥ s, {{s, 0}, -20, 20}, {{t, 0}, -20, 20}]

प्रयुक्त फ़ंक्शन

संबंधित रेसिपी

सभी रेसिपी · फ़ंक्शन संदर्भ · इसे किसी MCP क्लाइंट से उपयोग करें