Questions tagged [plotting]
Questions on creating visualizations from functions or data using high-level constructors such as Plot, ListPlot, Histogram, etc.
16,439 questions
4
votes
2
answers
265
views
Visualizing Different Coordinate Representations of Complex Numbers
As a beginner with Mathematica, I apologize if this question is too basic. I would like to show introductory students that a complex number can be represented in several different coordinate systems ...
2
votes
2
answers
121
views
Log-scaled bar legends in both directions
EDIT: This question has been heavily edited to only show the one question I have without confusion.
I am simulating points $X_j$ and getting outputs $Y_j=f(X_j)+e_j$ where $e_j\sim N(0,3)$ where $f$ ...
4
votes
1
answer
141
views
Visualizing multiple paths to infinity in the complex plane using Mathematica [closed]
Hello everyone — I’m reading about the extended complex plane and the “point at infinity,” and I find the geometric picture quite helpful. According to this text, in the complex plane $z \in \mathbb{C}...
2
votes
2
answers
189
views
Finding asymptotes of a function defined by a relation of two variables
Based on this question, how does one analytically compute the asymptotes for the equation defined by:
$$(x+y+2)(x+y)^2 = x+9y-2 ?$$
I can easily plot the curve...
and can manipulate equation for ...
2
votes
0
answers
61
views
how to improve the predictor corrector schemes including computational cost
I am currently implementing a variable-order fractional predictor–corrector scheme in Mathematica. Since I am still a beginner with Mathematica programming, I encountered several issues during the ...
0
votes
0
answers
78
views
Displaying parentheses in axes labels
I have a list plot that I want to plot in a framed graph and have the following labels on the axes.
...
0
votes
0
answers
45
views
As shown in the figure, how to draw a graph with a broken y-axis? [duplicate]
Piecewise function. The two segments have significant differences. The y-axis needs to be split to show the trend of each segment, and a connection is required in the middle.
This is quite different ...
2
votes
5
answers
213
views
How can I generate the $z^2$ grid-mapping diagram (rectangular grid → curved grid)?
I would like to generate a diagram in Mathematica showing how the mapping
\begin{equation}
w = z^2
\end{equation}
transforms a rectangular grid in the complex $z$-plane into a curved grid in the $w$-...
1
vote
3
answers
419
views
How to change the color of the individual squares on a chessboard?
The code I have written to create a chessboard is as follows:
...
0
votes
0
answers
54
views
2
votes
1
answer
112
views
4
votes
1
answer
185
views
Blurry AxisObject
I am trying to imitate default frame of ContourPlot with AxisObject. I used AbsoluteOptions ...
1
vote
0
answers
69
views
How to simply change filled-in marker with empty circles in the given code?
I use this code
p1 = Graphics[{PointSize[0.05], Red, Point[{{4, 0}, {7, 0}}]}];
p2 = Plot[Sin[x], {x, 0, 10}, PlotRange -> {-2, 2}];
Show[{p1, p2}]
which gives ...
1
vote
1
answer
97
views
How to make a Framed PlotLabel span the exact width of the plot Frame?
I am trying to add a title with a background color to my plot. Currently, using Framed inside PlotLabel only creates a box around the text itself.
I want the background box of the title to:
Span the ...
3
votes
1
answer
103
views
How to preserve tooltips for SVG Maps created by Mathematica?
I want to produce an SVG map by Mathematica that preserves tooltips that are in Mathematica so that they are also in the SVG. The problem is that the tooltips do not export.
Here is an example:
That ...