Questions tagged [figures]

91 questions
1
vote
0 answers

How to remove the word "Figure" from listoffigures Latex?

I'm searching a lot for this issue but it seems that it's not so simple. I have my list of figures in Latex and right after the number of the figure there is the word "figure", just before the caption. "1.1figure Evolution of.." How can I remove the…
1
vote
4 answers

Draw figure from java textbook

I am working working on Chapter 2 Self-Check Problems from Reges, Stuart, and Martin Stepp. Building Java Programs: A Back to Basics Approach. I am trying to get the output below vs. my code. I am trying to identify the line to ! to \ to /…
phillipsK
  • 1,466
  • 5
  • 29
  • 43
1
vote
1 answer

Matlab How to Break Y-Axis and Put Infinity at Top

I am trying to break the y-axis of a plot and put Infinity as my top point, but I can't seem to modify the y-axis labels. Ideally, I'd also like to get rid of that curve ~ line that breaks the plot and instead use the double slashes //, but I tried…
Veridian
  • 3,531
  • 12
  • 46
  • 80
1
vote
3 answers

How to get corresponding values in two lists

So I have two lists called A and C that each have the same amount of data points stored in them. I have created a new list called E that contains values in C that are greater than 400. I need to make a plot of E vs. A My question is how do I get…
1
vote
1 answer

Antialiasing in ILNumerics

In ILNumerics, how to use the anti-aliasing? I can't find how to use it in the tutorial. My graphs are like this: I need smoother lines as this graphs (that we build with canvas in WPF): Update: I try the solution. Here is the code that I…
ehmind
  • 265
  • 3
  • 10
1
vote
2 answers

Figures in html have a spot next to them

I am trying to organize a gallery using figures, but I keep getting this annoying dot or bullet next to them. Are there any solutions like "list-style-type:none" for figures? Thanks (had to post a link to picture because I'm not allowed yet)
user3381973
  • 23
  • 1
  • 3
1
vote
1 answer

Cropping axis tick labels when exporting figures

The are entries suggesting the usage of export_fig package for exporting figures from MATLAB. However, when I use export_fig without any xlabel, the output figure has the x-tick labels trimmed from the bottom. With xlabel there are no problems. Am I…
dagcilibili
  • 461
  • 5
  • 11
1
vote
2 answers

Need to create 5 shapes

You will create two classes, one for a box and one for a triangle. Each of the figures, the box and the triangle, will have an offset telling how far they are indented from the edge of the screen. Each figure will also have a size, although the size…
1
vote
3 answers

How to specify the axis size when plotting figures in Matlab?

Suppose that I have 2 figures in MATLAB both of which plot data of size (512x512), however one figure is being plotted by an external program which is sets the axis parameters. The other is being plotted by me (using imagesc). Currently the figures,…
Neil
  • 287
  • 1
  • 3
  • 12
1
vote
0 answers

Expand Matlab figures "from up to down"

I'm working on a resizable GUI in MATLAB, and, since the coordinates are "upside down", if I want to resize a figure keeping the top border in place and making the bottom border move down, I'm having to recalculate the OuterPosition property and…
rafa
  • 326
  • 3
  • 9
1
vote
1 answer

Edit created figure with pylab

in MATLAB you can edit, if needed, figure files (.fig) - is there a similar functionality using pylab? I can create the image I need but it comes out as .png that I have no control over - if I could sligthly edit it (e.g. to move legend to the…
Dimitris
  • 425
  • 1
  • 9
  • 21
1
vote
1 answer

.eps figure labels not displaying correctly when using LaTeX

I am saving images to .eps using python and Matplotlib. LaTeX is not reading the image labels correctly, in that the labels seem to be dropping characters. I suspect it has something to do with "math mode" and the labels. The label (in Python)…
user1919931
  • 11
  • 1
  • 2
1
vote
1 answer

Android: Is there a way how to assign math formula from res/values/formulas.xml to variable?

I need to assign a formula like square perimeter (4*a) which i have stored in resource xml as string, to a value in my activity. So, it should look like: Activity: int a = (formula from xml) And XML:
Aenorr
  • 15
  • 1
  • 4
1
vote
2 answers

making high-quality eps figures using gnuplot for inclusion in latex

I make plots using gnuplot by set term postscript eps color blacktext "Helvetica" 24 set output "filename.eps" However, when I include the eps file in latex file, the quality of eps is not satisfactory. I have also searched google a lot and saw…
user984260
  • 3,401
  • 5
  • 25
  • 38
1
vote
2 answers

How to group data objects in matlab figures

I am working on making a simple interactive plotter in Matlab. What I am doing is simple: I use the command: [x,y] = ginput(1) to pin-point the location (x,y). Then, I use this point as a seed point to plot a curve and also I add some arrows…
MomoPP
  • 599
  • 2
  • 6
  • 14