Questions on the construction of 2D and 3D graphics through the direct use of primitives, directives, and functions. Include the graphics3d tag for questions specifically on 3D graphics. This tag is not to be used for basic questions on visualizing functions and lists using the various flavors of ...
5
votes
1answer
286 views
How can I view the code implementing a built-in Mathematica function? [duplicate]
Possible Duplicate:
What is the most convenient way to read definitions of in-memory symbols when we don’t have the source files?
I would like to look at the code that implements ...
3
votes
1answer
214 views
Animating a circle to move along an curve
Basically, I want to move a graphic (such as a circle) along a given path (such as sin(x)). I was thinking that the trick might be making the x and y coordinates of the circle vary based on the ...
9
votes
1answer
763 views
Image Processing: Finding Orientation and Position of Symmetry Axes
Background
I'm currently toying with Principles of Design by Charlotte Jirousek in order to learn some basics of image processing. As main principals she suggests Balance, Proportion, Rhythm, ...
-2
votes
1answer
194 views
How can I make a barchart?
I want to mimic the below image type using Mathematica's BarChart3D function. For this purpose I wrote the following code but it isn't working.
...
10
votes
3answers
314 views
Non-geometric transformation of Graphics3D primitives
I want to apply non-geometric transformations to polygons etc, the goal is to have a Manipulate objects that behaves like that famous möbius transform video.
Since ...
2
votes
1answer
93 views
1
vote
0answers
108 views
Mathematica does not export Turkish characters in a Graphics expression
When I export the following Graphics expression as a PDF (or EPS) file, the Turkish characters ü and ç do not appear.
...
5
votes
1answer
207 views
How to get full-screen graphics canvas?
Is it possible to create a full-screen graphics without any front end elements like cell brackets and scrollbars? The zero approximation can be
...
4
votes
1answer
112 views
Rescuing a vertically clipped histogram
I recently ran a rather time intensive calculation and plotted the results in a histogram by simply called Histogram[data]. However, because of a rather serious error on my part, I recently lost my ...
2
votes
2answers
159 views
Pasting external PDF vector graphics without losing ability to export them
As in previous versions, Mathematica 9 on Mac OS X (10.7.5 here) still has a problem with pasted PDF graphics that were copied from external applications such as ...
9
votes
4answers
401 views
Creating an animation illustrating the time-evolution of a pre-computed orbit
As the title says, I would like to use Mathematica in order to create an animation depicting the time-evolution of a three-dimensional (3D) orbit. To begin with, I have an ASCII file which contains ...
12
votes
2answers
180 views
Why does DominantColors keep shuffling the order of the results?
This graphic is produced by running DominantColors (new in Mathematica 9) with different values, using the Lena image as the source:
Each row is a list of the ...
0
votes
0answers
102 views
Graphic Layers, Splitting Regions, Symmetry Operations to Font Characters
As Stephen Wolfram wrote in his lates blog post:
A basic interactive system for generating logos is a tiny amount of Mathematica code. But getting everything exactly right turns out to be quite ...
1
vote
1answer
61 views
Obtaining Size Of Graphical Objects
I have created a panel, say Panel[""]. I want to know its size/dimensions. Is there any built-in function for doing that?
1
vote
0answers
173 views
Mathematica 9 fails to export graphics by right-click when notebook magnification is changed [closed]
When I try to export graphics as PNG, JPG and other rasterized formats using the right-click and choosing Save Graphic As..., if the notebook magnification is ...
3
votes
2answers
387 views
Deformed style when exporting eps files
I want to export a plot into an eps file. Below I present a sample plot code in order to demonstrate the two issues that appear.
(1). LabelStyle: When I use ...
2
votes
2answers
334 views
Edges and crossing
I want to make a program where I have a collection of labeled vertices and edges between the vertices such that they join up with edges $a_{1} a_{2}, \; a_{2} a_{3}, \ldots ,\; a_{n} a_{1}$, so the ...
0
votes
0answers
128 views
PDF exportation fails to print depending on method: possible bug in v9?
Admittedly inelegant code (that wasn't intended for public consumption):
...
13
votes
2answers
334 views
Combining 3 graphics of different coordinate systems
I have 3 graphics in different coordinate systems and I want to join them in as in the following figure.
This is just a sample figure, not the real one.
My functions are as follows.
...
13
votes
4answers
828 views
How to draw a great circle on a sphere?
I apologize for the text description, but new users are not allowed to post images.
I want to draw a circle that cuts through the center of a sphere and has an inclination of 15 degrees with the ...
0
votes
0answers
63 views
Extracting box coordinates [duplicate]
Possible Duplicate:
Dimensions of the results of Text[] within Graphics[]
In writing the following code, I had to figure out what values to give d by trial and error. Is there a way to ...
8
votes
2answers
384 views
Use different ColorFunction for each function plotted
When plotting two curves on one plot, you can specify different colors for each function:
Plot[{Sin@x, Cos@x}, {x, 0, 4π},
PlotStyle -> {Red, Blue}]
To ...
4
votes
0answers
96 views
some Graphics output do not fully render on the screen until an extra click is made into the notebook
Sometimes when using a command such as Grid and looking at the output, some of the actual lines (frame, gridlines) that make up the display will be missing on the ...
2
votes
2answers
189 views
Plotting Chebyshev's theta function $\vartheta(x)$
The function I would like to plot is defined as $\sum\limits_{p\leq x}\log p.$ The following gives me I think a plot of the points of interest, but the function is defined for all $x > 0$ and so ...
17
votes
2answers
409 views
Movable text on a curve
Having an arbitrary curve defined as InterpolatingFunction, what is the best way to place a text on this curve? The text generally has two rows, for example: ...
0
votes
1answer
215 views
How to show legend in a combined plot of many lists,
I am having trouble with adding a legend to a plot. The example I discuss here is simpler than my real problem, but describes it well.
I have a vector, called X with dimensions (100 x 6). I use the ...
8
votes
3answers
183 views
Quirk in VertexColors interpolation when displaying Polygon
When using VertexColors the docs state:
The interior of the polygon is colored by interpolating between the colors specified by VertexColors.
It however ...
3
votes
1answer
187 views
Why am I getting so many error messages from my pendulum simulation?
I'm doing my end of semester project for a physics class. We were supposed to graphically model a physical occurrence; I chose doing a Pendulum Wave.
I have my code written, however Mathematica keeps ...
5
votes
1answer
221 views
How do I prevent fonts sizes and line weights from scaling in exported graphics?
It's common to export graphics from Mathematica that are subsequently scaled to various sizes that cannot (at least not conveniently) be anticipated. This is problematic in cases where (as is common) ...
6
votes
4answers
283 views
Mark an 2d-area on a 3dPlot (ListPlot3d)
I have a list {(IC,s,FK)}, which I use to generate a 3d-plot with the help of the command ListPlot3D. ...
5
votes
1answer
173 views
7
votes
2answers
176 views
TreePlot with centered vertexes
I want to draw a tree plot for Euler totient function for this question like the following:
I generate the EulerPhi for first 20 numbers into a list:
...
1
vote
1answer
78 views
TextCell going awry due to ImageResolution (in Mathematica 7)
Can anyone see how to fix this text display? The example is from a larger project. I need to export the graphic at high resolution, but the text is going wrong.
...
4
votes
4answers
258 views
Adding Math to Plots
I have several formulas I would like to place at specific coordinates in a Graphics object I have already created. I need to be able to choose bold or not as well ...
7
votes
1answer
129 views
Circular AngularGauge does not roll over boundaries
I am using the Mma9 AngularGauge function to develop a controll for a rotating stage. I am experiencing several problems:
I am unable to get the values {0°, 90°, ...
2
votes
2answers
92 views
Cannot adjust inset to show at the top of the base graph
I'm trying to put an inset on top of a graph, the inset is also a graph.
I'm using Inset within Epilog and the following command ...
1
vote
2answers
186 views
How can I set an image as the background of a panel?
Is it possible to set an Image as the Background of a Panel? I've studied all the options in ...
7
votes
1answer
148 views
Changing default ImageSize in the frontend?
I would like graphs to appear somewhat larger in my notebooks (running v8.0.4 on OSX 10.8.2).
Naturally I can specify ImageSize in each individual plot, or drag ...
4
votes
1answer
115 views
Automatically wrap abritrary-length text in graphics
Question: How to insert Styled text of unknown style and length into a graphics and have it wrap at a Scaled width?
Attempt: I ...
6
votes
2answers
279 views
How can I set the background color to the Popupmenu?
I want to set the Background color of a PopupMenu to blue. I already searched in the documentation center, but I didn't find any ...
16
votes
5answers
652 views
Op-art Graphic Images
This image comes from Michael Trott's Mathematica Guidebook for Programming. It's just a chapter image though, and he doesn't show the code. I was wondering what would be the best approach to ...
13
votes
4answers
922 views
How to draw Fractal images of iteration functions on the Riemann sphere?
Prof. McClure, in the work "M. McClure, Newton's method for complex polynomials. A preprint version of a “Mathematical graphics” column from Mathematica in Education and Research, pp. 1–15 (2006)", ...
9
votes
2answers
273 views
Automatizing PSfrag export
I'm in the early phase of creating a Mathematica function (or package) that exports graphics such that they can be used with $\LaTeX$'s PSfrag.
The goal
Ideally, the function should take a graphic ...
0
votes
0answers
201 views
Graphic is red when copied from Mathematica and pasted into Word [closed]
I'm having a hard time copying my graphic (a plot) from Mathematica into a Word document. Every time I copy and paste a graphic, it appears all red. And when I save it as a JPG, it still makes it all ...
4
votes
1answer
130 views
Exported graphics texture to eps is too dark
Why is the exported graphics eps file so dark? It looks much lighter (and better) as the Mathematica output appearing the notebook.
After running
...
8
votes
2answers
569 views
Placing a contourPlot under and Plot3D [duplicate]
I would like to combine a 3-dimensional graph of a function with its 2-dimensional contour-plot underneath it in a professional way. But I have no idea how to start.
I have a three of these I would ...
0
votes
0answers
55 views
How to obtain xyz-axes of same length? [duplicate]
Possible Duplicate:
Controlling the 2D $x–y$ aspect ratio of a 3D plot
I am plotting 1000 points in a 3-dimensional cartesian coordinate system, the plotting range for the x, y, z axes is ...
2
votes
3answers
310 views
Color mixing or blend
Color mixing seems not only one type.
Here is RGB_color_model
I wrote this one:
...
0
votes
0answers
45 views
Intersection of graphics [duplicate]
Possible Duplicate:
Intersecting graphics
I want to display the intersection of two rectangle:
...
2
votes
1answer
95 views
Use output from Plot3D as an object in Graphics3D that I can transform
I'm trying to draw up an optical system where I can show an example of wavefront error on an exit pupil. It would be great if I could take the results of a 3D function from Plot3D and use it as a ...


