Tagged Questions
The measure tag has no wiki summary.
15
votes
8answers
7k views
How do you to retrieve dimensions of a view? Getheight() and Getwidth() always return zero
I have a view made up of tablelayout, tablrows and textviews to look like a grid. I need to get the height and width of this grid. The methods getheight() and getwidth() always return 0. This ...
15
votes
6answers
2k views
Measure execution time in C#
I want to measure the execution of a piece of code and I'm wondering what the best method to do this is?
Option 1:
DateTime StartTime = DateTime.Now;
//Code
TimeSpan ts = ...
4
votes
3answers
236 views
How can I pre measure a string before is printed?
Hello, I am learning programming with C# VS 2010 EE and I’m making an application to fill up a preprinted form. This form has several places in different coordinates. Three of the boxes on the paper ...
3
votes
3answers
93 views
F# measure unit : from radians to velocity in m/s
let's say I've defined an F# module for handling 3-dimensional vectors and measure unit:
[<Measure>]
type m
[<Measure>]
type s
[<Measure>]
type v = m/s
[<Measure>]
type rad
...
3
votes
2answers
174 views
measuring text on scaled canvas
i've been struggling with text measuring and scaled canvases.
When the canvas is unscaled, getTextBounds and measureText deliver accurate results. However, when the canvas is scaled both methods do ...
3
votes
3answers
129 views
Best way to measure speed of functions, classes and processes
What is the best way to measure speed of functions and classes? For every function there are various solutions and I'd like to know how to measure running speed and optimize my shared classes with the ...
3
votes
1answer
528 views
Actual Text Width android
I require actual Text width from a TextView.
To expalin this heres my TextView description:
TextView lies in a LinearLayout with some internal padding.
TextView is set to fill the width and wrap up ...
3
votes
3answers
600 views
JQuery How-strong-is-your-password bar
Is there a jQuery project out there, that create on of these "Password-strength-meters" right by a password box and updates the strength-bar when something is typed into the field?
Do you know any ...
2
votes
1answer
33 views
How can I measure pageload time on iPhone Safari?
I am following these pages to live stream video files to my iPhone.
...
2
votes
3answers
80 views
Get execution time function in python
I create this working function for getting time of another function:
def get_execution_time(function, args, numberOfExecTime=1):
"""Return the execution time of a function in seconds.
"""
...
2
votes
2answers
100 views
Simplify record assignment in F#
let's say I defined a module to handle vectors with measure unit in F#:
module Vec
[<Measure>]
type m
type Vector3<[<Measure>] 'a> =
{
X : ...
2
votes
2answers
105 views
MeasureString Ignores Font Styles for Arial and Times New Roman
After completing the following code the value of "result1" and "result2" variables (measured width of string) are the same, despite the fact that the "font1" is regular and the "font2" is bold. ...
2
votes
0answers
287 views
how to measure the realtime FPS in html5 video while playback
I'm working on measuring the real-time frame rate of html5 video, does anyone has some ideas. Since I have not find the properties info about frame in html5 video, I have no idea about that.
...
2
votes
1answer
711 views
Android: find how much network traffic other apps generate
I am trying to make a background service which should measure traffic usage of various applications so as to be able to show to the user which apps consume most data traffic.
I found that Spare Parts ...
2
votes
3answers
1k views
Programmatically detemining max fit in textbox (WP7)
I'm currently writing an eBook reader for Windows Phone Seven, and I'm trying to style it like the Kindle reader. In order to do so, I need to split my books up into pages, and this is going to get a ...
2
votes
2answers
402 views
Measure time of execution in F#
Please post code for displaying time in F#. I noticed that you can measure it from F# interactive with #time directive, but I don't know how to execute program from FSI
Thanks
2
votes
2answers
739 views
iPhone SDK measure frequency over iphone mic
I need a way to get the inout from the microphone and determine the the average frequency. Is there a library or something to handle this?
Thanks
2
votes
2answers
1k views
How do I measure the size of a TextBlock in WPF before it is rendered?
I have a WPF DataTemplate with two TextBlock controls (stacked) and then some other elements underneath. Due to some complicated layout code, I need to know the height of the two TextBlock elements ...
2
votes
1answer
638 views
SQL 2008 - MDX Leaf Level Calculation with Parent Aggregates
What is the optimal way to create a calculated measure to compute a custom variance formula (I cannot use the default Variance function because it does not accommodate custom weights). So the leaf ...
1
vote
1answer
90 views
Measuring force of a punch on iphone
I'm creating a simple app that measures the force exerted by the user from punching in the air while holding the device. The only way I know is to use the built-in accelerometer. Now i was able to ...
1
vote
2answers
56 views
Multiplying vectors with unit of measure in F#
I've written the following
[<Measure>]
type m
[<Measure>]
type s
[<Measure>]
type v = m/s
type Vector3<[<Measure>] 'a> =
{
X : float<'a>
Y : ...
1
vote
0answers
62 views
Silverlight .Measure returns minimum size
I am trying to print some usercontrols to a few pages as demonstrated on Channel9, Silverlight printing and numerous blogs.
The problem I am having starts with the controls that contain a ...
1
vote
3answers
141 views
measure time in a function in C
I'm debugging an C application and I'd like to know how much time it spends in a particular function.
I could change the source code and add some more code to do the measurement, but it doesn't seem ...
1
vote
3answers
127 views
measure time passed in Python?
What I want is to start counting time somewhere in my code and then get the passed time, to measure the time it took to execute few function. I think I'm using the timeit module wrong, but the docs ...
1
vote
1answer
69 views
Best way to calculate the index of a character in a string given a pixel offset
Related question: Getting a string index based on a pixel offset
I know this is close to that question, but this isn't asking how to do it directly, it's asking how to fake it best.
I am ...
1
vote
1answer
69 views
How to measure execution time of a cucumber step
I'm looking for a way to measure the execution time of my cucumber steps. Using the junit format I managed to get some data about the execution time of the features and scenarios, but I would like to ...
1
vote
1answer
53 views
MDX for calculating measure given equality of 2 member attributes from 2 different dimensions
I have the following structure of measures and dimensions, and some example data
Fact Table:
id_dim1 id_dim2 id_dim ...measure1
1 2 ...120
2 1 ...101
1 1 ...95
3 3 ...12
Dim1:
id_dim1 ...
1
vote
3answers
134 views
MDX -No Sales over 30 days
I'd like to get the product with zero sales over 30 days. E.g. Below is my expected result:
Store,Product,Days
Store1, product1, 33
Store1, product2, 100
Store2, product5, 96
Store34, product14, 78
...
1
vote
1answer
128 views
How to determine the right font size for android?
I'm developing an app for android mobile devices. I'm using the AVD emulator and everything seems to be fine, but then I tested it on real device(HTC Wildfire 240x320) and the text appears so small ...
1
vote
2answers
270 views
Measuring Download Speed Java
I'm working on downloading a file on a software, this is what i got, it sucesfully download, and also i can get progress, but still 1 thing left that I dont know how to do. Measure download speed. I ...
1
vote
1answer
162 views
MeasureCharacterRanges not even exact?
Of course, the Graphics.MeasureString method is well-known to have padding problems, and so you use Graphics.MeasureCharacterRanges instead, but as you can see here:
It's not measuring quite ...
1
vote
1answer
197 views
WPF: Shared Size in Custom Panel?
Im trying to implement something similar to SharedSizeGroup in Column/RowDefinition for Grids.
Simplified case:
<l:MyCustomPanel>
<l:MyCustomPanel>
<TextBlock ...
1
vote
2answers
344 views
Flex 3 - Diagonally draw text in a shape and adjust size
I'm trying to create the following component:
Just for information, the blank space will contain a text control, and I'm creating a component that represents the black corner with the (i) icon and ...
1
vote
3answers
318 views
Silverlight Measure Method not working properly depending of databound object?
UPDATE II
Problem was solved. Thank you.
For a simple Silverlight printing preview engine, my XAML looks like this (excerpt):
<Grid>
<TextBlock Text="{Binding IntroText}" />
...
1
vote
2answers
774 views
How can I find the measured height of views?
I need to calculate the measured height of my views without measuring all views, because these views contain images fetched from the internet. When I measure the views, they download images to memory ...
1
vote
1answer
356 views
Measure/Arrange Of Grids with SharedSizeGroup
There seems to be a bit of an issue with two grids containing elements specified in a certain way, and the SharedSizeGroup.
This question is in response to an earlier question from user D.H. I ...
1
vote
1answer
123 views
Measuring code complexity of functional language and imperative language
What is the best way of comparing code complexity of functional language and imperative language?
In my case I have to compare complexity of certain programs written in F# and C++.
As for now as a ...
1
vote
0answers
453 views
Android: Measure Size of View before rendering
I have a TextView that displays text that changes and run time. I want to use the View.getLineCount() method to see how many lines the TextView takes up and do different functions accordingly. The ...
1
vote
4answers
1k views
Measure String inside RichTextBox Control
Can somebody please explain how I would go about measuring the string inside a richtextbox control so that the I can automatically resize the richtextbox control according to its content?
Thank you
...
1
vote
6answers
265 views
Measuring online time on website
I would like to measure how much time a user spends on my website. It's needed for a community site where you can say: "User X has been spending 1397 minutes here."
After reading some documents about ...
1
vote
5answers
597 views
How can I measure volatility?
I am trying to determine the volatility of a rank.
More specifically, the rank can be from 1 to 16 over X data points (the number of data points varies with a maximum of 30).
I'd like to be able to ...
0
votes
0answers
17 views
MAX current through droid headphone jack
Does anyone know the max voltage and amps that can go through a droid headphone jack?
Along these lines, has anyone built (or know of) an app that can control the current output through the ...
0
votes
1answer
24 views
Comparing resource use of different methods
I often doubt between two or more forms of doing something. In Android, I try to do it the way more efficent, the way in which the processor uses less resources and RAM.
How I can measure the cpu and ...
0
votes
0answers
111 views
Android Measure WITH SRC CODE not available in my country
Does anyone know where I could get hold of Measure (WITH SRC CODE) app , because every-time I try to download I get an error Message that this VIDEO is not available in your country (I live in South ...
0
votes
1answer
105 views
Measuring “total bytes sent” from web service with nettcpbinding using perfmon
I have a web service (WCF) exposing both http endpoints and a tcp endpoint (using the nettcpbinding). I am trying to measure the difference in "total bytes sent" using the different endpoints.
I have ...
0
votes
0answers
116 views
Analyze android application memory with MAT
I've already done the heap dump with DDMS,
In MAT (Eclipse memory Analyzer) where do I see the full(The memory that will be freed when i close it) memory usage by my application?
Is it "Biggest ...
0
votes
1answer
126 views
What triggers a View's measure() to be called
In my application I have an infinite loop on one of my View's onMeasure() overrides. Debugging the source code starting from a break point in my onMeasure, I am able to trace myself all the way up ...
0
votes
1answer
137 views
SSAS Date Measure Max StringFormat when Null
I have a cube with a measure of type date, performing a max aggregation, where some of the data points have a null value for date. In these cases, the Max value becomes 12/30/1899 which I believe is ...
0
votes
1answer
181 views
MDX Calculated Member Issue
I have been a long time lurker of stack overflow and I am hoping this strong community might be able to help solve an issue I have been having for a while. I have done a fair amount of research and I ...
0
votes
1answer
107 views
PostGIS Measure multiple linestrings
I'm new in postgis and i'm trying to mesasure linestrings giving two initial points, start and end point in the same layer (geometry type is linestring). This linestrings represents roads, rivers, ...