Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
339 views

Algorithm for finding the ratio of two floating-point numbers?

I need to find the ratio of one floating-point number to another, and the ratio needs to be two integers. For example: input: 1.5, 3.25 output: "6:13" Does anyone know of one? Searching the ...
3
votes
5answers
2k views

Calculate a Ratio in C#

I thought this would be simple, but searching Google didn't seem to help. I'm basically trying to write a function which will return a ratio as a string (eg 4:3) when supplies with two integers (eg ...
2
votes
1answer
38 views

How can i divide each row of a vector with its next row value in matlab

Suppose i have the vector a=[1;2;2] i want to create the vector b=[1/2;1;2] deviding each value of the ith row of a with the ith+1 value, the last value can't be divided with anything so i let like it ...
2
votes
0answers
109 views

one-dimensional (deep) zoom with changing aspect ratio

I have a data set that (if thought of as an image) is much wider than it is high. (Data is collected in one dimension at 100,000 to 1,000,000 X-points; each Y-value lives between 0 and 1. At its ...
2
votes
3answers
967 views

Create thumbnail in .NET C# by defining width

I am using the following code in my website, for thumbnail creation: string furl = "~/images/thumbs/" + matchString; lBlogThumb.ImageUrl = GetThumbnailView(furl, 200, 200); private string ...
2
votes
1answer
1k views

MDX ability to calculate ratio of sums from child levels

I'm very much a novice at MDX, and have no idea how to approach this problem. I'd appreciate any help, even if just pointers to where relevant functions are explained. I need to be able to calculate ...
1
vote
2answers
43 views

Android screen ratio

I am just starting developing apps for android and I have a question. Is there a standard screen ratio for android mobile phones, like we have for TV or Computer screens (4:3, 16:9)? Thanks
1
vote
2answers
88 views

Android - Scaling an image to max available width, keeping aspect ratio and avoiding ImageView extra space

I have this simple layout XML, and a green_square.png file which is 30X30 pixels <?xml version="1.0" encoding="utf-8"?> <LinearLayout ...
1
vote
2answers
28 views

How do I calculate the dimensions of a zoomed in Bitmap?

I KNOW that this is a really simple ratio calculation, but I'm bleary eyed and am just staring at the screen, so, I'd really appreciate a boost. I have a photo that is being shrunk into a smaller ...
1
vote
3answers
133 views

Get aspect ratio from width and height of image (PHP or JS)

I can't believe I can't find the formula for this. I am using a PHP script called SLIR to resize images. The script asks to specify an aspect ratio for cropping. I'd like to get the aspect ratio based ...
1
vote
3answers
147 views

Alternative to Graphics.ScaleTransform

I am doing custom drawing using the GDI+. Normally if I want to fit whatever I am drawing to the window, I calculate the appropriate ratio and I ScaleTransform everything by that ratio: ...
1
vote
3answers
397 views

iphone 5 screen size and ratio problem

i am worry about the iphone 5 screen size will change to 4 inch or even change its ratio. i only use absolute value in my game, which apple recommends against. mySprite.position = ccp(30, 50);//bad ...
1
vote
1answer
84 views

Is it possible to optimize Zencoder video thumbnails?

I'm working on a Rails3 project with video encoding through Zencoder, assets are stored on Amazon S3. ... :thumbnails => { :number => 5, :size => "620x465", :base_url => ...
1
vote
1answer
143 views

Fixed aspect ratio View

How would I go implementing a fixed aspect ratio View? I'd like to have items with 1:1 aspect ratio in a GridView. I think it's better to subclass the children than the GridView? EDIT: I assume this ...
1
vote
8answers
110 views

Ratio Calculator in Javascript

I am attempting to make a calculator that translates a mileage, ping, and number of hops into a per mile ratio (1:x:y) using java script. I can't seem to get it to output anything from the function ...
1
vote
4answers
196 views

Determine image aspect ratio is appropriate

Aloha, how do I determine/calculate whether an image aspect ratio is appropriate (proportion) in Javascript programatically, based on these information? For Example: Below is ok: Width = 570px ...
1
vote
2answers
184 views

C++0x using <ratio> for a safer Length-type

When reading <ratio> and <chrono> I tried to imagine a Length-type that protects against accidental conversion errors. This is what I got: #include <iostream> #include ...
1
vote
2answers
95 views

how do i calculate the width of a bounding rectangle, for text wrapped to fit certain ratio?

If I have the following text: "Hello this is a piece of text that will be displayed in a rectangle area of the screen" I know the total width of the text. I am trying to find a bounding width to ...
1
vote
1answer
94 views

Emacs aspect ratio definition when maximizing or fullscreen

when emacs starts up in fullscreen(even if that is triggered from .emacs) on the bottom of the screen i have a "dead" area which shows nothing. if I de-maximize and remaximize everithing works fine ...
1
vote
1answer
2k views

Image GD resize to 100px while keep the ratio

Hay Guys. I was wondering if anyone can help with resizing an image to 100px (wide, or high). While keep it's ratio and quality. All this needs to do is open a given file, resize it and overwrite ...
0
votes
1answer
14 views

setting a imagebuttons layout parameters in a class

I'm trying to find a simple way to make a button fit to any screen as a certain percentage of the screen. I declared the button in my main.xml like this: <ImageButton ...
0
votes
0answers
10 views

octave plot3 fixed aspect ratio

I'm plotting 3D data in octave with plot3. I need to fix the aspect ratio in X, Y, and Z. I have been searching, and I found that the axis() function lets adjust the ratio of the plot: However, the ...
0
votes
3answers
28 views

How can I find the ratio?

I'm building a tag cloud and since it's for a large site I'm saving the counts in a table to avoid counting everything with each request, here it is: CREATE TABLE `counts` ( `name` CHAR(35) NOT ...
0
votes
2answers
55 views

Maintain circle image ratio for button on varying screen resolutions

I have a image button with a background image .png of a circle. I am testing it on different resolution screens and it looks different on every one. Most of them distort the circle shape by stretching ...
0
votes
0answers
13 views

WPF Toolkit BubbleSeries : How to keep the ratio of Y Axis and Bubble size 1:1?

WPF Toolkit BubbleSeries : How to keep the ratio of Y Axis and Bubble size 1:1? Detail: If my Y axis is 1,2,3,4,5,6,...,10 and my bubble size (SizeValueBinding) is 3, DependentValueBinding is 4, ...
0
votes
0answers
50 views

Ratio - MySQl query based on latitude and longitude fields

Im using a table named: Properties, using Google Maps im storing in the backend the latitude and longitude data obtained from a Google Map Mark. In frontend, system let user to drag a mark to a given ...
0
votes
1answer
224 views

JQuery Maths: working out a ratio based on a previously calculated value

I'm trying to produce a photo slider that is dynamically sized according to the viewport size, but maintains a 4:3 ratio regardless of viewport dimensions. The page I'm working on is here: ...
0
votes
0answers
82 views

open graph maximum image aspect ratio is 3:1, what about minimum?

according to the open graph documentation the maximum aspect ratio for an image is 3:1. An aspect ratio, the way I understand it, is width to height, hence given the 3:1 requirement the width of an ...
0
votes
1answer
114 views

Full screen canvas aspect ratio problem

I have canvas with width: 100%; and height: 100%; so it's full screen and draw image on it. I would like keep original aspect ratio of the image when I resize my browser. I would like the same effect ...
0
votes
2answers
130 views

Rotating iPhone and keeping image's proportions

I have an UIScrollView, that contains UIImageViews. All images keep their image ratio - i mean that eg portrait image is high and narrow, while landscape image is short and wide. I have about 4 images ...
0
votes
1answer
175 views

Gnuplot script generating two different graph sizes

I have created a PHP script to create and run a gnuplot script to generate .eps files. They are different graphs, with different axes and values, but the size specifications remain static. Hopefully ...
0
votes
1answer
63 views

Loading an Image at 16:9 ratio

I have the following C# code: var bitmapImage = new BitmapImage(); bitmapImage.BeginInit(); bitmapImage.UriSource = new Uri(dlg.FileName); bitmapImage.DecodePixelWidth = 500; bitmapImage.EndInit(); ...
0
votes
0answers
258 views

Maintain aspect ratio of an image when resizing WPF/C#/Maths?

The answer to this may be simple, I'm currently making a WPF application that has an ability to zoom into an image (by changing the image size). But i cant seem to figure out a way to maintain the ...
0
votes
1answer
451 views

How to stretch an image in Android to fullscreen while maintaining aspect ratio?

As stated in the title I'm having trouble with the first step, which is stretching the image to the screen's resolution. My second problem is maintaining aspect ratio while stretching the image. My ...
0
votes
2answers
64 views

PHP: Find the maximal upscaled dimension while respecting a ratio

Me and a college are trying to build a method that can find the biggest size for a selection displayed by default in an image. The selection is having a ratio. Until now, we've tried this: public ...
0
votes
1answer
105 views

How to find the formula for number conversion? Math! [closed]

Preface: Not homework. I am developing an open source engine for a very old game and they handle values in a weird way. For instance, with color, they take values from 0-255 for the RGB values. ...
0
votes
3answers
379 views

Adding CSS Class According to Image Ratio with JavaScript/JQuery

I'm creating a image gallery with dozens of landscape and portrait images on a single page. I want to style each image with a dynamically added CSS class (i.e. ".landscape" for landscape images) ...
0
votes
1answer
381 views

How to calculate the SNR (Signal noise ratio) for a WAV file

I have a WAV file that I access with a FileInputStream object. I can read the hex values without a problem. I am trying to calculate the SNR of an orignal WAV compared to a modified one, I have looked ...
0
votes
1answer
361 views

Varnish hit ratio affected by non-cacheable files?

Our Varnish VCL has rules to stop it caching certain calls and pass them straight to the back end e.g: AJAX tracking AJAX customization cron Will these calls impact the hit ratio stats (since ...
0
votes
2answers
98 views

arbitrary datatype ratio converter

I have following code: template<typename I,typename O> O convertRatio(I input, I inpMinLevel = std::numeric_limits<I>::min(), I inpMaxLevel = std::numeric_limits<I>::max(), ...
0
votes
2answers
155 views

Scaling ratio of two different resolutions

I have two different resolutions, the original one is 567x756 (wXh), the one which I want to display is 768x1024 (wXh). How to find out the scaling ratio for these two resolutions? For example if the ...
0
votes
1answer
388 views

IIS 7.5 compression ratio

How can I determine compression ratio for a specific web page in IIS 7.5? Thank you