RegionPlot of annulus gives a mesh The Next CEO of Stack OverflowHow to express ticks in scientific form?How to combine ParametricPlot and RegionPlot?How should I debug a failed Manipulate of RegionPlot?RegionPlot, RegionPlot3D and differing embedding dimensionsPlotting issue — possible bug?An issue evaluating RegionInteresectCannot avoid redundant function evaluations in RegionPlotFrame within a Frame for all plots? Why?Exporting ParametricPlot to .pdfIssue related to BoundaryDiscretizeGraphics
Are there any limitations on attacking while grappling?
If Nick Fury and Coulson already knew about aliens (Kree and Skrull) why did they wait until Thor's appearance to start making weapons?
What flight has the highest ratio of time difference to flight time?
Elegant way to replace substring in a regex with optional groups in Python?
Is HostGator storing my password in plaintext?
What is the result of assigning to std::vector<T>::begin()?
Preparing Indesign booklet with .psd graphics for print
Why do remote companies require working in the US?
Has this building technique been used in an official set?
Interfacing a button to MCU (and PC) with 50m long cable
Does it take more energy to get to Venus or to Mars?
How do I transpose the 1st and -1th levels of an arbitrarily nested array?
Is micro rebar a better way to reinforce concrete than rebar?
Skipping indices in a product
Several mode to write the symbol of a vector
Written every which way
How to start emacs in "nothing" mode (`fundamental-mode`)
Indicator light circuit
What is ( CFMCC ) on ILS approach chart?
RegionPlot of annulus gives a mesh
Would a galaxy be visible from outside, but nearby?
Why do we use the plural of movies in this phrase "We went to the movies last night."?
Would a completely good Muggle be able to use a wand?
What can we do to stop prior company from asking us questions?
RegionPlot of annulus gives a mesh
The Next CEO of Stack OverflowHow to express ticks in scientific form?How to combine ParametricPlot and RegionPlot?How should I debug a failed Manipulate of RegionPlot?RegionPlot, RegionPlot3D and differing embedding dimensionsPlotting issue — possible bug?An issue evaluating RegionInteresectCannot avoid redundant function evaluations in RegionPlotFrame within a Frame for all plots? Why?Exporting ParametricPlot to .pdfIssue related to BoundaryDiscretizeGraphics
$begingroup$
So I tried plotting an annulus in two ways:
RegionPlot[Annulus[0,0,a,b]]
Graphics[Annulus[0,0,a,b]]
Why does RegionPlot give a fractal looking thing? (see below for when a=1; b=5;)
*note, I used wolfram programing lab.
graphics regions
$endgroup$
|
show 4 more comments
$begingroup$
So I tried plotting an annulus in two ways:
RegionPlot[Annulus[0,0,a,b]]
Graphics[Annulus[0,0,a,b]]
Why does RegionPlot give a fractal looking thing? (see below for when a=1; b=5;)
*note, I used wolfram programing lab.
graphics regions
$endgroup$
$begingroup$
What are $a$ and $b$ here?
$endgroup$
– mjw
5 hours ago
$begingroup$
Try a=1; b=5; But really any values give something weird
$endgroup$
– Ion Sme
5 hours ago
4
$begingroup$
Because it discretized the region in order to plot it, and it is showing the underlying triangulation mesh.
$endgroup$
– MarcoB
5 hours ago
1
$begingroup$
@IonSme I guess they just use different defaults for plotting; the Graphics result is "normal-looking" though.
$endgroup$
– MarcoB
5 hours ago
2
$begingroup$
There are some subtle differences going on how Mma showsRegion
s andRegionPlot
Graphics
. AlsoRegion
s can be defined analytically viaImplicitRegion
orParametricRegion
or as 'flat'MeshRegion
s.DiscretizeRegion
converts every type to aMeshRegion
and some functions likeRegionPlot
might use something similar toDiscretizeRegion
under the hood to make plotting easier, whose discretization it for some reason decides to show. Like others wrote you can useImplicitRegion
to get a different (not discretized) look in your case.
$endgroup$
– Thies Heidecke
4 hours ago
|
show 4 more comments
$begingroup$
So I tried plotting an annulus in two ways:
RegionPlot[Annulus[0,0,a,b]]
Graphics[Annulus[0,0,a,b]]
Why does RegionPlot give a fractal looking thing? (see below for when a=1; b=5;)
*note, I used wolfram programing lab.
graphics regions
$endgroup$
So I tried plotting an annulus in two ways:
RegionPlot[Annulus[0,0,a,b]]
Graphics[Annulus[0,0,a,b]]
Why does RegionPlot give a fractal looking thing? (see below for when a=1; b=5;)
*note, I used wolfram programing lab.
graphics regions
graphics regions
edited 4 hours ago
MarcoB
38.1k556114
38.1k556114
asked 5 hours ago
Ion SmeIon Sme
876
876
$begingroup$
What are $a$ and $b$ here?
$endgroup$
– mjw
5 hours ago
$begingroup$
Try a=1; b=5; But really any values give something weird
$endgroup$
– Ion Sme
5 hours ago
4
$begingroup$
Because it discretized the region in order to plot it, and it is showing the underlying triangulation mesh.
$endgroup$
– MarcoB
5 hours ago
1
$begingroup$
@IonSme I guess they just use different defaults for plotting; the Graphics result is "normal-looking" though.
$endgroup$
– MarcoB
5 hours ago
2
$begingroup$
There are some subtle differences going on how Mma showsRegion
s andRegionPlot
Graphics
. AlsoRegion
s can be defined analytically viaImplicitRegion
orParametricRegion
or as 'flat'MeshRegion
s.DiscretizeRegion
converts every type to aMeshRegion
and some functions likeRegionPlot
might use something similar toDiscretizeRegion
under the hood to make plotting easier, whose discretization it for some reason decides to show. Like others wrote you can useImplicitRegion
to get a different (not discretized) look in your case.
$endgroup$
– Thies Heidecke
4 hours ago
|
show 4 more comments
$begingroup$
What are $a$ and $b$ here?
$endgroup$
– mjw
5 hours ago
$begingroup$
Try a=1; b=5; But really any values give something weird
$endgroup$
– Ion Sme
5 hours ago
4
$begingroup$
Because it discretized the region in order to plot it, and it is showing the underlying triangulation mesh.
$endgroup$
– MarcoB
5 hours ago
1
$begingroup$
@IonSme I guess they just use different defaults for plotting; the Graphics result is "normal-looking" though.
$endgroup$
– MarcoB
5 hours ago
2
$begingroup$
There are some subtle differences going on how Mma showsRegion
s andRegionPlot
Graphics
. AlsoRegion
s can be defined analytically viaImplicitRegion
orParametricRegion
or as 'flat'MeshRegion
s.DiscretizeRegion
converts every type to aMeshRegion
and some functions likeRegionPlot
might use something similar toDiscretizeRegion
under the hood to make plotting easier, whose discretization it for some reason decides to show. Like others wrote you can useImplicitRegion
to get a different (not discretized) look in your case.
$endgroup$
– Thies Heidecke
4 hours ago
$begingroup$
What are $a$ and $b$ here?
$endgroup$
– mjw
5 hours ago
$begingroup$
What are $a$ and $b$ here?
$endgroup$
– mjw
5 hours ago
$begingroup$
Try a=1; b=5; But really any values give something weird
$endgroup$
– Ion Sme
5 hours ago
$begingroup$
Try a=1; b=5; But really any values give something weird
$endgroup$
– Ion Sme
5 hours ago
4
4
$begingroup$
Because it discretized the region in order to plot it, and it is showing the underlying triangulation mesh.
$endgroup$
– MarcoB
5 hours ago
$begingroup$
Because it discretized the region in order to plot it, and it is showing the underlying triangulation mesh.
$endgroup$
– MarcoB
5 hours ago
1
1
$begingroup$
@IonSme I guess they just use different defaults for plotting; the Graphics result is "normal-looking" though.
$endgroup$
– MarcoB
5 hours ago
$begingroup$
@IonSme I guess they just use different defaults for plotting; the Graphics result is "normal-looking" though.
$endgroup$
– MarcoB
5 hours ago
2
2
$begingroup$
There are some subtle differences going on how Mma shows
Region
s and RegionPlot
Graphics
. Also Region
s can be defined analytically via ImplicitRegion
or ParametricRegion
or as 'flat' MeshRegion
s. DiscretizeRegion
converts every type to a MeshRegion
and some functions like RegionPlot
might use something similar to DiscretizeRegion
under the hood to make plotting easier, whose discretization it for some reason decides to show. Like others wrote you can use ImplicitRegion
to get a different (not discretized) look in your case.$endgroup$
– Thies Heidecke
4 hours ago
$begingroup$
There are some subtle differences going on how Mma shows
Region
s and RegionPlot
Graphics
. Also Region
s can be defined analytically via ImplicitRegion
or ParametricRegion
or as 'flat' MeshRegion
s. DiscretizeRegion
converts every type to a MeshRegion
and some functions like RegionPlot
might use something similar to DiscretizeRegion
under the hood to make plotting easier, whose discretization it for some reason decides to show. Like others wrote you can use ImplicitRegion
to get a different (not discretized) look in your case.$endgroup$
– Thies Heidecke
4 hours ago
|
show 4 more comments
1 Answer
1
active
oldest
votes
$begingroup$
a = 1; b = 5;
Please try plotting with Region[]
. These look okay to me:
Region[RegionDifference[Disk[0, 0, b], Disk[0, 0, a]]]
Region[Annulus[0, 0, a, b]]
Here is a decent plot, with RegionPlot
:
RegionPlot[x^2 + y^2 > 1 && x^2 + y^2 < 25, x, -6, 6, y, -6, 6]
Here it is (again) with Graphics[]
:
Graphics[LightBlue, Annulus[0, 0, a, b]]
$endgroup$
$begingroup$
Hmmm, that worked, but why is RegionPlot so funky?
$endgroup$
– Ion Sme
5 hours ago
1
$begingroup$
I think MarcoB mostly answers this below your question. So we can then ask: Why doesRegionPlot
use one algorithm, andRegion
another?RegionPlot
seems to like functions as inputs, and also likes to have the $x$ and $y$ ranges speciifed ...
$endgroup$
– mjw
5 hours ago
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
return StackExchange.using("mathjaxEditing", function ()
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
);
);
, "mathjax-editing");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "387"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f194211%2fregionplot-of-annulus-gives-a-mesh%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
a = 1; b = 5;
Please try plotting with Region[]
. These look okay to me:
Region[RegionDifference[Disk[0, 0, b], Disk[0, 0, a]]]
Region[Annulus[0, 0, a, b]]
Here is a decent plot, with RegionPlot
:
RegionPlot[x^2 + y^2 > 1 && x^2 + y^2 < 25, x, -6, 6, y, -6, 6]
Here it is (again) with Graphics[]
:
Graphics[LightBlue, Annulus[0, 0, a, b]]
$endgroup$
$begingroup$
Hmmm, that worked, but why is RegionPlot so funky?
$endgroup$
– Ion Sme
5 hours ago
1
$begingroup$
I think MarcoB mostly answers this below your question. So we can then ask: Why doesRegionPlot
use one algorithm, andRegion
another?RegionPlot
seems to like functions as inputs, and also likes to have the $x$ and $y$ ranges speciifed ...
$endgroup$
– mjw
5 hours ago
add a comment |
$begingroup$
a = 1; b = 5;
Please try plotting with Region[]
. These look okay to me:
Region[RegionDifference[Disk[0, 0, b], Disk[0, 0, a]]]
Region[Annulus[0, 0, a, b]]
Here is a decent plot, with RegionPlot
:
RegionPlot[x^2 + y^2 > 1 && x^2 + y^2 < 25, x, -6, 6, y, -6, 6]
Here it is (again) with Graphics[]
:
Graphics[LightBlue, Annulus[0, 0, a, b]]
$endgroup$
$begingroup$
Hmmm, that worked, but why is RegionPlot so funky?
$endgroup$
– Ion Sme
5 hours ago
1
$begingroup$
I think MarcoB mostly answers this below your question. So we can then ask: Why doesRegionPlot
use one algorithm, andRegion
another?RegionPlot
seems to like functions as inputs, and also likes to have the $x$ and $y$ ranges speciifed ...
$endgroup$
– mjw
5 hours ago
add a comment |
$begingroup$
a = 1; b = 5;
Please try plotting with Region[]
. These look okay to me:
Region[RegionDifference[Disk[0, 0, b], Disk[0, 0, a]]]
Region[Annulus[0, 0, a, b]]
Here is a decent plot, with RegionPlot
:
RegionPlot[x^2 + y^2 > 1 && x^2 + y^2 < 25, x, -6, 6, y, -6, 6]
Here it is (again) with Graphics[]
:
Graphics[LightBlue, Annulus[0, 0, a, b]]
$endgroup$
a = 1; b = 5;
Please try plotting with Region[]
. These look okay to me:
Region[RegionDifference[Disk[0, 0, b], Disk[0, 0, a]]]
Region[Annulus[0, 0, a, b]]
Here is a decent plot, with RegionPlot
:
RegionPlot[x^2 + y^2 > 1 && x^2 + y^2 < 25, x, -6, 6, y, -6, 6]
Here it is (again) with Graphics[]
:
Graphics[LightBlue, Annulus[0, 0, a, b]]
edited 5 hours ago
answered 5 hours ago
mjwmjw
1,17610
1,17610
$begingroup$
Hmmm, that worked, but why is RegionPlot so funky?
$endgroup$
– Ion Sme
5 hours ago
1
$begingroup$
I think MarcoB mostly answers this below your question. So we can then ask: Why doesRegionPlot
use one algorithm, andRegion
another?RegionPlot
seems to like functions as inputs, and also likes to have the $x$ and $y$ ranges speciifed ...
$endgroup$
– mjw
5 hours ago
add a comment |
$begingroup$
Hmmm, that worked, but why is RegionPlot so funky?
$endgroup$
– Ion Sme
5 hours ago
1
$begingroup$
I think MarcoB mostly answers this below your question. So we can then ask: Why doesRegionPlot
use one algorithm, andRegion
another?RegionPlot
seems to like functions as inputs, and also likes to have the $x$ and $y$ ranges speciifed ...
$endgroup$
– mjw
5 hours ago
$begingroup$
Hmmm, that worked, but why is RegionPlot so funky?
$endgroup$
– Ion Sme
5 hours ago
$begingroup$
Hmmm, that worked, but why is RegionPlot so funky?
$endgroup$
– Ion Sme
5 hours ago
1
1
$begingroup$
I think MarcoB mostly answers this below your question. So we can then ask: Why does
RegionPlot
use one algorithm, and Region
another? RegionPlot
seems to like functions as inputs, and also likes to have the $x$ and $y$ ranges speciifed ...$endgroup$
– mjw
5 hours ago
$begingroup$
I think MarcoB mostly answers this below your question. So we can then ask: Why does
RegionPlot
use one algorithm, and Region
another? RegionPlot
seems to like functions as inputs, and also likes to have the $x$ and $y$ ranges speciifed ...$endgroup$
– mjw
5 hours ago
add a comment |
Thanks for contributing an answer to Mathematica Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f194211%2fregionplot-of-annulus-gives-a-mesh%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
$begingroup$
What are $a$ and $b$ here?
$endgroup$
– mjw
5 hours ago
$begingroup$
Try a=1; b=5; But really any values give something weird
$endgroup$
– Ion Sme
5 hours ago
4
$begingroup$
Because it discretized the region in order to plot it, and it is showing the underlying triangulation mesh.
$endgroup$
– MarcoB
5 hours ago
1
$begingroup$
@IonSme I guess they just use different defaults for plotting; the Graphics result is "normal-looking" though.
$endgroup$
– MarcoB
5 hours ago
2
$begingroup$
There are some subtle differences going on how Mma shows
Region
s andRegionPlot
Graphics
. AlsoRegion
s can be defined analytically viaImplicitRegion
orParametricRegion
or as 'flat'MeshRegion
s.DiscretizeRegion
converts every type to aMeshRegion
and some functions likeRegionPlot
might use something similar toDiscretizeRegion
under the hood to make plotting easier, whose discretization it for some reason decides to show. Like others wrote you can useImplicitRegion
to get a different (not discretized) look in your case.$endgroup$
– Thies Heidecke
4 hours ago