Questions tagged [plotting]
Questions on creating visualizations from functions or data using high-level constructors such as Plot, ListPlot, Histogram, etc.
16,440 questions
0
votes
0
answers
10
views
Easiest way to adjust the plot tick lines
I encountered a few minor issues everytime when I try to plot graphs nicely:
What is the simplest method to adjust the major and minor tick lengths of the frame?
Is there a way to program the tick ...
1
vote
0
answers
26
views
How can I correctly render hidden lines in a 3D graphic as dashed lines and visible lines as solid lines?
When working on 3D plots, I’d like to implement a feature where visible edges are drawn as solid lines and obscured (hidden) edges are drawn as dashed lines. I haven’t found a good solution to this ...
4
votes
2
answers
272
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
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$ ...
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
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 ...
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
420
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:
...
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 ...