Skip to main content

Questions tagged [plotting]

Questions on creating visualizations from functions or data using high-level constructors such as Plot, ListPlot, Histogram, etc.

Filter by
Sorted by
Tagged with
1 vote
2 answers
139 views

The code I have written to create a chessboard is as follows: ...
N31ngy's user avatar
  • 21
0 votes
1 answer
80 views

...
Leo's user avatar
  • 279
1 vote
0 answers
67 views

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 ...
charmin's user avatar
  • 1,179
3 votes
1 answer
99 views

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 ...
Romogi's user avatar
  • 687
1 vote
1 answer
58 views

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 ...
youthdoo's user avatar
  • 647
0 votes
1 answer
95 views

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? ...
MMA13's user avatar
  • 5,650
1 vote
0 answers
77 views

I have this code working well for Q = 0. But I need to plot the image for Q > 0, any help is very appreciated. ...
David Senjaya's user avatar
1 vote
1 answer
90 views

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 ...
kai29lol's user avatar
  • 317
0 votes
0 answers
98 views

I have the following expression in Mathematica: ...
sje1g13's user avatar
  • 63
0 votes
2 answers
126 views

I have a dataset organized as {time, velocity, upper error bar, lower error bar}. I want to plot velocity vs. time with error bars and a fitted line, both in log–...
SAC's user avatar
  • 1,343
1 vote
2 answers
136 views

I have a large DAG that I'm trying to visualise. It's the history of a large (~350k+ commits) git repository with multiple separate origin points. I've tried using a handful of different graph layout ...
OneDeuxTriSeiGo's user avatar
4 votes
2 answers
370 views

I've been trying to calculate an integral using NIntegrate as follows. ...
dqsang90's user avatar
0 votes
0 answers
29 views

Suppose I have a number of data files, each of which has two columns. The first column is the x-coordinate data, and the second column is the y-coordinate data. What format can I use in Import to ...
parula33's user avatar
  • 143
2 votes
1 answer
102 views

I am plotting this contour map Mathematica (Version 13.0.1): ...
HJ Creens's user avatar
3 votes
1 answer
187 views

This has come up in my physics research. Suppose I have a family of curves in the xy plane of the form f(k)*x^2+g(k)*y^2=h(k), where the functions f, g, and h depend on a parameter k with a known ...
parula33's user avatar
  • 143
1 vote
0 answers
83 views

In an attempt to graphically present my research, I wish to plot families of curves in the xy plane. The curves depend on a parameter, p, that ranges from 0 to some positive constant, k. I want to ...
parula33's user avatar
  • 143
3 votes
0 answers
111 views

I am using the following sample code from the documentation of CustomTicks (release 2.1.1 from August 2020) in Mathematica 14.2: ...
Jens's user avatar
  • 385
3 votes
1 answer
275 views

I'm plotting a figure, and the codes is the following: ...
Ya He's user avatar
  • 308
1 vote
1 answer
162 views

I wish to plot the streamlines for the function f[l_, z_]. However I do not know how I can get rid of the Integrate::ilim error. ...
Math_student's user avatar
3 votes
1 answer
142 views

Suppose you have five different plots in one ParametricPlot3D with default style for each. Then you want to add another ...
azerbajdzan's user avatar
  • 32.5k
0 votes
0 answers
66 views

I am trying to export a ContourPlot with a Barlegend to pdf. Here's the simplest example (just the legend) ...
tukan's user avatar
  • 417
0 votes
0 answers
72 views

I am creating a TimeLinePlot with text bubbles connected to the time interval lines. The option PlotLayout -> "Stacked" ensures the interval lines do not overlap but I can't figure out ...
jmm's user avatar
  • 281
3 votes
1 answer
186 views

I am trying to plot the 4D Poincaré surface of section, using Hue, specifying one dimension with the color. I have pasted my code below ...
MMS's user avatar
  • 171
4 votes
1 answer
155 views

I want to solve the Equation 22 and generate fig 3(a) given in the paper https://arxiv.org/pdf/1812.04672. ...
Yuktak's user avatar
  • 343
1 vote
0 answers
162 views

I am trying to reproduce figure like FIG. 1 in https://arxiv.org/pdf/2507.14565. The following is my code which does not work well. Any help is very appreciated. ...
David Senjaya's user avatar

1
2 3 4 5
329