@@ -272,7 +272,7 @@ def plot_implicit(expr, x_var=None, y_var=None, adaptive=True, depth=0,
272
272
:format: doctest
273
273
:include-source: True
274
274
275
- >>> plot_implicit(Eq(x**2 + y**2, 5))
275
+ >>> p1 = plot_implicit(Eq(x**2 + y**2, 5))
276
276
277
277
With the range for the symbols:
278
278
@@ -281,7 +281,8 @@ def plot_implicit(expr, x_var=None, y_var=None, adaptive=True, depth=0,
281
281
:format: doctest
282
282
:include-source: True
283
283
284
- >>> plot_implicit(Eq(x**2 + y**2, 3), (x, -3, 3), (y, -3, 3))
284
+ >>> p2 = plot_implicit(
285
+ ... Eq(x**2 + y**2, 3), (x, -3, 3), (y, -3, 3))
285
286
286
287
With depth of recursion as argument:
287
288
@@ -290,7 +291,7 @@ def plot_implicit(expr, x_var=None, y_var=None, adaptive=True, depth=0,
290
291
:format: doctest
291
292
:include-source: True
292
293
293
- >>> plot_implicit(
294
+ >>> p3 = plot_implicit(
294
295
... Eq(x**2 + y**2, 5), (x, -4, 4), (y, -4, 4), depth = 2)
295
296
296
297
Using mesh grid and not using adaptive meshing:
0 commit comments