Tagged Questions
The weight tag has no wiki summary.
24
votes
9answers
26k views
Linear Layout and weight in Android
I always read about this funny weight value in the Android documentations.
Now I want to try it for the first time but it isn't working at all.
As I understand it from the documentations this ...
13
votes
2answers
196 views
How to define parameter values graphically, under constraints, in Mathematica
I'm relatively new in Mathematica (and StackOverflow) and I'm trying to figure out whether it's possible to implement the following Mathematica interface.
I would like to create an interface in ...
13
votes
2answers
8k views
Set the layout weight of a TextView programmatically
I'm trying to dynamically create TableRow objects and add them to a TableLayout. The TableRow objects have 2 items, a TextView and a CheckBox. The TextView items need to have their layout weight set ...
9
votes
3answers
4k views
Boost Solr results based on the field that contained the hit
I was browsing the web looking for an indexing and search framework and stumbled upon Solr.
A functionality that we absolutely need is to boost results based on what field contained the hit.
A small ...
8
votes
3answers
124 views
Algorithm for re-arranging a sequence of weights
I have a number of items in an array, each one associated to a certain weight.
There is a business rule saying that no two adjacent items cannot have a total weight of more than a certain value, let's ...
6
votes
4answers
1k views
Web Safe Font Weights — How to get thinner?
When I design in Photoshop, my fonts are thin and crisp, but when I declare fonts in CSS -- even when using font-weight: lighter -- the fonts always appear bolder.
Maybe this is just how the browser ...
6
votes
2answers
985 views
Android: trying to understand android:layout_weight
I'm trying to divide a page in three parts. I'd like to do it in percentage values, however that is not supported by Android. Instead I have to use android:layout_weight. But I have a hard time ...
5
votes
2answers
1k views
Weighted random numbers in MATLAB
How to randomly pick up N numbers from a vector a with weight assigned to each number?
Let's say:
a = 1:3; % possible numbers
weight = [0.3 0.1 0.2]; % corresponding weights
In this case ...
4
votes
3answers
1k views
Dijkstra's algorithm with negative weights
Can we use Dijkstra's algorithm with negative weights?
STOP! Before you think "lol nub you can just endlessly hop between two points and get an infinitely cheap path", I'm more thinking of one-way ...
4
votes
2answers
230 views
I need random algorithm with weighing options in .net
I have a requirement in my .net project where I need to select an item from a collection, each item has a Weight (integer from 1 to 10) assigned to it. I need a random generator that would take this ...
4
votes
4answers
2k views
Calculating Hamming weight efficiently in matlab
Given a MATLAB uint32 to be interpreted as a bit string, what is an efficient and concise way of counting how many nonzero bits are in the string?
I have a working, naive approach which loops over ...
3
votes
2answers
1k views
3
votes
2answers
2k views
Android layout using layout_weight, layout_width and maxWidth
I'm trying to get a row of text which will be something like
foofoofoo - barbarbar
but I want it to ellipse foo and bar if it won't fit on one line.
i.e. I'm trying to shorten them down.
...
3
votes
2answers
263 views
Picking random element by user defined weights
I have a web application where users can add 1-20 strings of text and assign a weight to them of how often it should show up. The system would then choose a random string based on the defined weights. ...
3
votes
1answer
665 views
Modifying Drupal Form Fields - [#weight] in array not being respected?
I don't have experience in php. I've followed a few tutorials to modify my Drupal forms using the theme method in template.php.
For some reason the [#weight] property for a field does not adhere to ...
3
votes
3answers
893 views
SQL : select one row randomly, but taking into account a weight
I'm using MySQL.
I have a table which looks like that:
id: primary key
content: varchar
weight: int
What I want to do is randomly select one row from this table, but taking into account the weight. ...
2
votes
2answers
188 views
Neural Networks in MATLAB, initial weights
I made Neural Network in MATLAB with newff(...). When you train it with the same inputs and outputs, the training results are different on different runs. I understand that it is happening because the ...
2
votes
2answers
176 views
Performance concern: StringCollection vs List<String>
I was wondering when I should use List< string > and when I should use StringCollection.
Let's say that I have to deal with large number of strings (like text files of 10mb).
I know that ...
2
votes
1answer
43 views
Ordering elements by a specifed preference in jQuery
I'm trying to use 4 jQuery sliders to allow users to specify a preference in which they would like their search results show in.
Here is an example: http://jsfiddle.net/sambenson/2vYHL/
...
2
votes
2answers
133 views
Sicstus Prolog - Weight of a word
I've got a problem about how to weigh a word.
Every single letter in a word has specific weight, I need to calculate the totol weight of the word.
For example:
A-E = 1, F-O = 2, P-Z = 3.
If the ...
2
votes
2answers
317 views
How to guarantee space for an ImageView, keep it from shrinking?
I need to create an xml with the following content:
* Two TextViews with varying text (1- 3 rows), one TextView below the other.
* One ImageView to the right of the 2 TextViews, centered vertically, ...
2
votes
1answer
71 views
How to accept weight data from Detecto AS-350D
I've found a scale, Detecto AS-350D (http://cardinal-detecto.centralcarolinascale.com/AS-PC-Computer.htm), that hooks up to a computer. I was hoping someone could help me figure out how to get the ...
2
votes
1answer
169 views
Determining weight matrix
I need to design a neural network which has the following behavior:
p(1)={0,1,1,1} outputs a(1)={0,1,0,0}
p(2)={1,1,0,1} outputs a(2)={0,0,1,0}
p(3)={0,0,1,0} outputs a(3)={0,0,0,1}
p(4)={0,0,1,1} ...
2
votes
1answer
2k views
Android Linear Layout - Difference between weight and FILL_PARENT
According to documentaion, FILL_PARENT basically lets the view take up the entire extra space. Weight also dictates how much of the extra space can be taken by the view. What is the difference?
For ...
1
vote
1answer
13 views
Handling weights in onMeasue for custom views
I have a custom view that I'm creating that will scale the font size of its child TextViews to fit all in a set width, so each is on its own line. Obviously it's going to need the width to figure that ...
1
vote
0answers
55 views
Weighted random selection in Cocoa (frequently changing the weights)
I have an array (could make it into a set I think) of around 1000-2000 dictionaries. Each one of those has a key whose value (a float... they don't add up to anything specific) I want to use as a ...
1
vote
1answer
76 views
LibSVM: -wi option (weight selection) during cross-validation and testing
I need help about the weight option of libSVM. I'm confused at some point; should we also use the -wi option while doing cross-validation? If so, should we use the calculated weights of the whole data ...
1
vote
0answers
228 views
change weight node and sort node base weight
i want to sort my content base on weight
best module for weight node for drupal 6?
i 5000 node in my site if change sort my node how to sort last node?
thank you
1
vote
1answer
467 views
layout_weight with buttons and text views in table row
I am trying to make four rows of three buttons each, and at the bottom of the buttons are two text views. I would like for them all to be spaced evenly but they aren't and I am not sure why.
Here is ...
1
vote
1answer
149 views
Java - Class to represent weight and measures
Is there an existing Java library to represent common weights and measures? I would like something which allows you to create objects which represent weight and distances in different units and let ...
1
vote
2answers
371 views
NetworkX (Python): how to change edges' weight by designated rule
I have a weighted graph:
F=nx.path_graph(10)
G=nx.Graph()
for (u, v) in F.edges():
G.add_edge(u,v,weight=1)
get the nodes list:
[(0, 1), (1, 2), (2, 3), (3, 4), (4, 5), (5, 6), (6, 7), (7, 8), ...
1
vote
3answers
220 views
HTML Page Size - page weight
I have to measure the over all page size of all the pages on my company's intrAnet site.
Please let me know how I can measure / calculate it.
Expectation : I open the intrAnet page in IE/Firefox. ...
1
vote
2answers
314 views
MySQL: How to “sum” product weight if the product are in different lines
I have to sum the weight of the certain products, but they are in different lines of MySQL. How to do it?
Here is an example of my database:
ID | Product_id | weight_kg | Quantity |
1 | 201 ...
1
vote
2answers
76 views
need more complex index !
I'm sorry if it's not an appropriate question for this site, and if it's necesary I'll close this question. But maybe someone could give me an ideea:
I'm trying to find a more complex index to make ...
1
vote
0answers
31 views
How can I find all the supported weights of a Font in Java?
How can I find all the available font weights for a given font in Java?
The TextAttribute for font weight lists 11 different weight constants, way more than just Font.PLAIN and Font.BOLD. I'd like ...
1
vote
1answer
132 views
Calculate weight for entries and order it for search
I have these tables:
businesses
:name
:rating
categories
:name
business_categories
:business_id
:category_id
reviews
content
business_id
Now I want to do a search, when type keywords, ...
1
vote
1answer
122 views
Lighter-weight elements - how does one gauge/know the weight of an element?
I'm working on the UI side of a WPF project. My favourite reference while xaml'ing (besides stackoverflow :) ) at the moment is Adam Nathan's "Windows Presentation Foundation Unleashed". He gives the ...
1
vote
2answers
96 views
Effective weight (at both design time, runtime, etc…) of extension methods in .NET
I was wondering what is the effective weight of extension methods, if used very wildly.
If, for example, i decide to create a lot of string/int/datetime extension methods for many of the common ...
0
votes
1answer
49 views
Set EditText to percentage of parents's width in LinearLayout
I have a LinearLayout class in which I have: TexView | ImageView | EditText | ImageView. I have the last ImageView all the way to the right side of the LinearLayout its wrapped in. The EditText runs ...
0
votes
3answers
35 views
Magento additional weight
I'm using Magento ver. 1.6.1.0
I'd like to add 8lbs to each order (packing materials)
Can't find something useful in Google for "additional weight magento"
How to do this? Is there any backend ...
0
votes
1answer
69 views
How to make two different layout to have same height?
In My application xml layout, i have one Relativelayout, In which there are two linear Layout. Now i am doing the animation for that both layout. But because thera seems the height different i got ...
0
votes
0answers
188 views
Why the font-weight doesn't work with Gotham Medium font?
I have designed on Photoshop CS4 a template using Gotham Medium font with Faux Bold.
I tried to put the font on css as shown:
@font-face {
font-family: 'GothamMediumRegular';
src: ...
0
votes
2answers
306 views
How can I overlay images on top of each other independent of screen size?
I have a simple Android layout question;
Take an image that is of size 480x800 - any image will do, but prefer something that has details.
Let's call this call this image large.png.
Now, take a ...
0
votes
3answers
63 views
Android UI dificulties
My layout was perfect until I decided to add a scrollview.
<?xml version="1.0" encoding="utf-8"?>
<TableLayout android:id="@+id/tableLayout1" android:layout_width="fill_parent" ...
0
votes
1answer
50 views
Using layout_weight in Android app
I needed a gridview that was perfectly solved by this thread:
How to layout a 'grid' of images in the center of the screen
The problem now is that I want to put a TextView at the bottom of ...
0
votes
1answer
191 views
Layout weight problem
This has been driving me crazy i have tried all kinds of help from other posts (setting widths to 0dp etc) but nothing seems to work.
I have 2 layouts and the first one still seems to dominate :/. If ...
0
votes
1answer
98 views
Adding edge weights in JUNG based on edge length
I have coded a program which dynamically inserts nodes and edges, overlaying the graph onto an image. My aim is to be able to automatically add the edge weights based on pixel distances from one node ...
0
votes
2answers
50 views
R: Going from a data.frame with weight variable to a regular data.frame
I have a data.frame or matrix in the following form:
Name of Columns : X, Y, Freq
a, 1, 3
b, 4, 2
The last column is a weight variable. How do I transform it into a data.frame/matrix without the ...
0
votes
1answer
132 views
How can I use TF-IDF Weights to Rank Relevancy?
I have a set of key terms and have calculated TF-IDF weights along with tag frequencies and term counts for each term, persisted in a database.
How can I use these DB values to produce a set of ...
0
votes
2answers
106 views
Random selection based off of floating point weight in PHP
Let's say I have an array with the following values:
0.7523262
0.9232192
1.5824928
5.2362123
What is the best way to randomly pick a value from this array so that the higher the value, the more ...