Questions tagged [figures]

91 questions
0
votes
2 answers

Pythagoras tree with g2d

I'm trying to build my first fractal (Pythagoras Tree): alt text http://img13.imageshack.us/img13/926/lab6e.jpg in Java using Graphics2D. Here's what I have now : import java.awt.*; import java.awt.geom.*; import javax.swing.*; import…
sasklacz
  • 3,610
  • 10
  • 39
  • 58
0
votes
1 answer

Hold on only the axis, not the data

I want my graph to fixed axes and also plot the data one by one. Everything is already known, however if i use hold off to remove the first set of data, it also forgets the limits on the axes and automatically assigns new limits for the second set…
user3446867
  • 79
  • 1
  • 1
  • 8
0
votes
1 answer

How to access Face Manipulation Mode?

I am fairly new to Blender and I am trying to join objects together on blender for a simulation. I have researched for an answer, and have found one source which seemed to work best with what I was trying to do. I have been using the answer given on…
user3550811
  • 103
  • 1
  • 6
0
votes
1 answer

For each and animate figures using Jquery

I have 6 divs having the classname "count". I'm trying to replicate this: http://jsfiddle.net/4v2wK/ I'm simply trying to animate figures, but nothing works, here is my code: $('.count').each(function(){ $({someValue: 1000}).animate({someValue:…
Isabelle
  • 1,457
  • 5
  • 19
  • 44
0
votes
1 answer

Shell script that passes parameter to gnuplot does not export the diagram (epslatex)

I have created a shell script (.run) that accepts the prefix for the names of the pictures as a parameter, and then calls gnuplot. However, for some reason, the picture is not saved. The code is: #!/bin/sh molecule=$1 echo "Plotting DFT-ADF PY…
Daimonie
  • 83
  • 11
0
votes
1 answer

how to display randomly figures via JQuery

ok, I've set up a site and I'm using isotope for some cool transitions, based on filter options. however, as isotope loads after the whole page is loaded, and not when the DOM is ready, I cannot use the random display feature, as my figures are…
Panos Vakalopoulos
  • 515
  • 1
  • 8
  • 23
0
votes
1 answer

How can I display different images on different axes in the same GUI in MATLAB?

I'm using MATLAB R2012a to develop a GUI for manual medical image segmentation. In particular, I want this regions to train a classifier for automatic brain tissue classification. The GUI I design contains 2 axes, with tags 'figureImage' and…
0
votes
2 answers

MATLAB: How to present multiple images/figures to user and wait for click on one of them?

all. I'm new to Matlab and I'm a bit stuck. The last piece of the puzzle to run my experiment is to get some human input (expert supervised system). As easy as this may sound, I just can't seem to figure this one out. I need to display four images…
Gerry
  • 25
  • 1
  • 4
0
votes
2 answers

How to draw this WPF Path in C#

I have been struggling to convert this piece of WPF code to C#. I am relatively new to WPF, and I really hope someone can help me out here :)
Johan Aspeling
  • 765
  • 1
  • 13
  • 38
-1
votes
1 answer

Landscape figures and captions

I'm trying to add a caption to a landscape figure, displaying in a portrait document (see img)Image1. The caption needs to display in landscape (i.e. can be viewed with the image, when the page is turned 90 deg.). It also needs to stay consistent…
SPG
  • 1
  • 1
-1
votes
1 answer

How to realize two collapsing circles in pure css3?

What i need to do is on image below: I do not want use SVG at all. I think it is two divs with border-radius 50%. But how I merge them like on image? Can you solve this or give an advice?
user3528865
  • 71
  • 1
  • 6
-1
votes
2 answers

How to make bigger Polygon

I have polygon from class Polygon. How can I make it bigger or smaller. I'm looking for function like grow(int,int) for rectangle.I haven't got any idea how can I do that. Thanks in advance! @sorry for my stupid question without any details. I'm…
PoorGuy
  • 29
  • 8
-2
votes
1 answer

How to Take Reference of Matlab's imagesc without Interruption?

Test code for the thread Why this imagesc-imshow with Colormap not Working in Matlab? which returns a structure of two fields cdata and colormap where cdata is an RGB representation of the figure hFig=figure; imagesc(time, potential, matrix); %…
Léo Léopold Hertz 준영
  • 134,464
  • 179
  • 445
  • 697
-2
votes
2 answers

How to always make a print of 4 figures in C

I am working on a project for university. One of the small things that make me lose points is that my answer is correct but it doesn't have four figure number. For example say I print my answer which is 17 and on other test files it could change to…
dave_1234
  • 147
  • 1
  • 3
  • 10
-3
votes
1 answer

how to combine two figures into one in matlab?

so I built two normal distributions.. I want to to combine both into a single image, with the two images overlapping partially to look something like this: two plots http://www.uark.edu/misc/lampinen/tutorials/image8BK.JPG is there any way to do…