Group Abstract Group Abstract

Message Boards Message Boards

0
|
2.4K Views
|
0 Replies
|
0 Total Likes
View groups...
Share
Share this post:

ComplexRegionPlot gives error "Infinite 1/0 expression encountered"

Posted 4 years ago

Consider the following commands:

disk[z_] := Abs[z] <= 1
f[z_] := 1/z;
{ComplexRegionPlot[disk[z], {z, 3}],
 ComplexRegionPlot[disk[InverseFunction[f][z]], {z, 3}]}

Evaluation of these gives a few errors:

LessEqual::nord: Invalid comparison with ComplexInfinity attempted.
Power::infy: Infinite expression 1/0 encountered.
Power::infy: Infinite expression 1/0 encountered.
LessEqual::nord: Invalid comparison with ComplexInfinity attempted.

In the documentation (Applications -> Mapping Complex Regions) the authors applied Quiet to this last line:

{ComplexRegionPlot[disk[z], {z, 3}, PlotLabel -> z],
 Quiet@ComplexRegionPlot[disk[InverseFunction[f][z]], {z, 3}, 
   PlotLabel -> f[z]]}

Is there any problem with those errors one recieves without Quiet? How can I know when it is ok to quiet messages?

POSTED BY: Ehud Behar
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard