Questions tagged [plotting]
Questions on creating visualizations from functions or data using high-level constructors such as Plot, ListPlot, Histogram, etc.
16,432 questions
0 votes
1 answer
13 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
36 views
0 votes
1 answer
64 views
3 votes
1 answer
111 views
Blurry AxisObject
I am trying to imitate default frame of ContourPlot with AxisObject. I used AbsoluteOptions ...
1 vote
0 answers
66 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
0 answers
54 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
98 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 ...
4 votes
2 answers
289 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
1 answer
58 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 ...
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-...
0 votes
1 answer
94 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
82 views
ParametricNDSolveValue Doesn't Work
I am plotting particle trajectory using ParametricNDSolveValue, but it gives error. Any help is highly appreciated. ...
1 vote
0 answers
77 views
Raytracing in Black Hole Background
I have this code working well for Q = 0. But I need to plot the image for Q > 0, any help is very appreciated. ...
0 votes
0 answers
62 views
Inconsistent color in SphericalPlot3D due to Lighting [duplicate]
I externally add color from external list to SphericalPlot3D. I think due to Lighting the resulted color is not consistent. This ...
1 vote
1 answer
90 views
“How to Fix Degenerate Polygons in BoundaryMeshRegion When Sweeping a 2D Rotor Profile in 3D”
I am generating a 3D rotor model by sweeping a 2D profile around the z-axis while applying a variable lead translation. The goal is to create a smooth helical solid based on rotor geometry and a lead ...