Questions tagged [plotting]
Questions on creating visualizations from functions or data using high-level constructors such as Plot, ListPlot, Histogram, etc.
21 questions from the last 30 days
2
votes
5
answers
214
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$-...
4
votes
2
answers
294
views
Mathematica does not give me any contour here
I would like to have an idea what kind of curbe is being formed from the intersection of the plane $x+y+z=9$ with the surface
$\sqrt{16-x^2}+\sqrt{25-y^2}+\sqrt{36-z^2}=12$ under the restriction $x,y,...
1
vote
3
answers
422
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:
...
4
votes
1
answer
186
views
Blurry AxisObject
I am trying to imitate default frame of ContourPlot with AxisObject. I used AbsoluteOptions ...
2
votes
2
answers
190
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 ...
4
votes
2
answers
273
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 ...
0
votes
1
answer
82
views
ParametricNDSolveValue Doesn't Work
I am plotting particle trajectory using ParametricNDSolveValue, but it gives error. Any help is highly appreciated.
...
2
votes
1
answer
112
views
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
122
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$ ...
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 ...
0
votes
1
answer
95
views
Plot labels are moved when put into Grid
I add a label to a plot on specific position, but when using Grid the position moves slightly. How to keep position fixed as in the plot?
...
0
votes
1
answer
59
views
Using ListContourPlot, how to renumber the tick marks independent of the plot?
I am using ListContourPlot to plot trajectory data against launch and arrival dates in Julian days. My axes go from 1 to 29, but I need to label the x-axis from 491 to 519, and the y-axis from 731-...
1
vote
1
answer
59
views
Drawing a curved Tube through three given points [duplicate]
I need to draw a curved Tube through three given points.
For example,
points = {{1, 0, 0}, {0, 1, 1}, {-1, -1, 0}}
I found that ...