Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
245 views

How to find the border points of a particular shape

Suppose I have a irregular, random, shape generated from a dataset. How do I find points that are situated on the shape's border? I am using R. Are there any packages in R for this purpose? For ...
6
votes
1answer
101 views

Is there a fast way to sample from a subset of GLn?

The rules of this problem are fairly specific because I'm actually looking at a subset of GLn, where the row and column vectors must have a certain form (call these vectors valid -- examples below), ...
4
votes
4answers
1k views

jQuery Uniform Checkbox does not (un)check

I am using jQuery Uniform to style inputs/selects etcs. However, the checkbox has stopped working. I am appending data sent from an ajax call. Once it's loaded, I use ...
4
votes
3answers
102 views

How to generate a random integer in the range [0,n] from a stream of random bits without wasting bits?

I have a stream of (uniform) random bits from which I'd like to generate random integers uniformly in the range [0,n] without wasting bits. (I'm considering bits wasted which are in excess of ...
4
votes
6answers
373 views

How to randomly select a key based on its Integer value in a Map with respect to the other values in O(n) time?

If we have a Map<T, Integer>, let's say the Integer value represents "how many" Ts there are. Thus, I want to uniformly select a T based on its Integer value. If the map contains Strings with ...
3
votes
1answer
123 views

OpenGL Uniform Buffer std140 layout, a driver bug or did I misunderstand the specification?

The OpenGL specification lies (or is this a bug?)... Referring to the layout for std140, with shared uniform buffers, it states: "The set of rules shown in Tabl e L-1 are used by the GLSL compiler ...
3
votes
5answers
514 views

How to generate three random numbers, whose sum is 1?

I need to generate 3 random numbers, the amount of which is equal to 1. My implementation does not support uniform distribution. :(
3
votes
4answers
714 views

Python Uniform Spherical Distribution

I am looking to be able to create a uniform sphere of particles. This is what I am looking for(images courtesy of http://nojhan.free.fr/metah/) This is a picture of a slice of the sphere This is ...
3
votes
4answers
472 views

django-uni-form helpers and CSRF tags over POST

I'm using django-uni-forms to display my fields, with a rather rudimentary example straight out of their book. When I render the form fields using <form>{%csrf_tag%} ...
2
votes
1answer
138 views

Random uniform point distribution on a square (with a catch)

Ok, so the problem of uniform point distribution is solved by some well known algorithms (Hammersley, Monte Carlo etc.). However, my situation is a bit different: lets say I have the set a of values ...
2
votes
2answers
110 views

random unit vector in multi-dimensional space

I'm working on a data mining algorithm where i want to pick a random direction from a particular point in the feature space. If I pick a random number for each of the n dimensions from [-1,1] and ...
2
votes
1answer
272 views

Javascript uniform postback

Good afternoon all Here is my scenario: I have user controls within a master page and within a user control, I may have an update panel. I have the following bit of code I place within a ...
2
votes
1answer
150 views

Mysterious and weird lines after using uni-form

I'm using django-uni-form to display forms. I've included all the css and javascript (notably jquery) in the page. But now I get some weird looking lines. The image below show how it looks: ...
2
votes
5answers
3k views

How to transform directional light to camera space in GLSL

I have the following GLSL code for lighting: uniform vec3 lightDir; // Parallel light uniform float ambient; uniform vec3 lightColour; void main() { gl_Position = ftransform(); vec3 ...
1
vote
1answer
30 views

need help in jquery unformjs select menu '&' character encoding

I am using uniformjs form controls which are working except the listmenu. When i add '&' symbol (&) inthe list menu, it renders correctly, but problem is coming when i change the value to ...
1
vote
3answers
114 views

Is it possible to use different size (width) select box with uniform (jquery plugin)?

I want to use multiple select box with multiple width with uniform . Problem is when I do $('#small').uniform({selectClass:'smallSelect'}); $('#big').uniform({selectClass:'bigSelect'}); <select ...
1
vote
1answer
49 views

Hash functions with good uniformity for unknown input

I'm looking for a hash function that partitions a large set of input data with good uniformity to a small number of partitions (say 100 or 256). That means I expect a lot of collisions and I don't ...
1
vote
0answers
100 views

Update Uniform.js input not working

I'm using Uniform.js on all selects, input:checkbox, input:text elements. The problem I'm running into is that the actual values of the elements that are using Uniform are not updating. I have a ...
1
vote
2answers
108 views

Algorithm for subdividing an array into “semi-equal”, uniform sub-arrays

Given an array with N elements, I am looking for M (M < N) successive sub-arrays with equal lengths or with lengths that differ by mostly 1. For example, if N = 12 and M = 4, all sub-arrays would ...
1
vote
1answer
128 views

OpenGL ES 2.0 with iPhone - Vertex Shader uniform cannot be located

I have the following vertex shader: uniform mediump mat4 projMx; attribute vec2 a_position; attribute vec4 a_color; attribute float a_radius; varying vec4 v_color; void main() { ...
1
vote
1answer
116 views

Play! Framework and Uniformjs don't play nicely for file uploading

I am writing a small webapp in Play!, and trying to use UniformJS (http://uniformjs.com/) to make my form elements look good. One page of the app lets users upload a file: #{ form ...
1
vote
1answer
70 views

Fast algorithm for uniformity test

I have zero to many bookings per day, and I need some measure of how uniformly these bookings are distributed throughout my time period. Bookings can be half day or full day bookings. The time period ...
1
vote
2answers
290 views

jquery UI selectmenu does not go “on top” of all other page elements (uniForm issues)

I am using uniForm (http://sprawsm.com/uni-form/) and jQuery UI select menu (http://jsfiddle.net/fnagel/hsn95/light/). The problem is, that drop down menu doesn't go "on top" of uniForm elements... ...
1
vote
2answers
719 views

Dynamic select menu options with jQuery Uniform and JSF2

We have an application that uses JSF 2, OpenFaces, jQuery and the Uniform plugin. There is a form that has a select box with options that are dynamically populated based on the value of another ...
1
vote
0answers
539 views

Passing array of vec2 to Fragment Shader Opengl es 2.0

I am trying to pass in an array of vec2 to a fragment shader but i can't seem to work out how. In my application i have the following array. GLfloat myMatrix[] = { 100.0, 100.0, 200.0, 200.0 }; ...
1
vote
1answer
294 views

How fast/slow is the glGetUniformLocation call?

Right before setting any uniform parameter to the shader, I am using glGetUniformLocation to retrieve its position instead of doing it once in the begining and storing the int position value. Like ...
1
vote
0answers
152 views

Tabbing not possible on buttons after applying jquery uniform

I am using jQuery uniform on my forms. I found that after applying uniform, when tabbing buttons(and radio buttons) are skipped. Is there any way around this problem?
1
vote
1answer
313 views

jquery uniform pixelmatrixdesign

I have a problem with slow computers/browsers, before rendering the styled uniform dropdowns, the users see the "normal" drops, and then it changes to the applied style. I can´t find a callback ...
1
vote
2answers
707 views

Can't disable an input[type='text'] or a textarea in jQuery Uniform?

I'm trying to implement uniform in my project but I've encountered an issue with disabled elements. I have selects, radiobuttons, checkboxes and other inputs (text, submit, reset, ...) in my page. ...
1
vote
2answers
337 views

Quick way to calculate uniformity or discrepancy of number set

Hello Assume I have the set of numbers I want a quick to calculate some measure of uniformity. I know the variance is the most obvious answer but i am afraid the complexity of naive algorithm is too ...
0
votes
0answers
24 views

glGetActiveUniformsiv: find uniformIndices[] when Uniform Block Object contains an array of Struct Objects?

For example, struct A{ GLint a1; GLint a2; GLint a3; }; Uniform X{ A a[8]; }x; GLchar* uniformNames[]={"x.a"}; GLuint uniformIndices[1]={0}; Now, glGetUniformIndices(programID, ...
0
votes
1answer
22 views

Passing an array of vec4 (GLfloat quad) as uniform to openGL shaders

I want to pass an array of vec4's to the fragment shader of OpenGL as a uniform and it seems a lot harder than I hoped for. It came to a point where I am trying to pass an array of GLfloat's and ...
0
votes
1answer
96 views

jQuery Uniform + Tinytable v3, no reaction (Uniform checkbox) on mouse click after column re-ordering (any column)

I have a problem and I would like your opinion on it as any help would be greatly appreciated. I'm using Tinytable V3 for showing data in an ordered fashion. Apart from it, I'm using jQuery Uniform ...
0
votes
1answer
120 views

Using Image Control with Stretch = UniformToFill - WP7

I have an image placed on a Page as follow <Grid x:Name="LayoutRoot" Background="Transparent"> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition ...
0
votes
1answer
62 views

How to get an uniform location of a Cg shader with OpenGL?

I've dabbled with basic shader programming before, using the GLSL way. Now I've come back to it, using Cg shaders. Following the tutorial at Josh Beam's website I've achieved the desired ...
0
votes
0answers
183 views

uniform select IE scrolling

I use the jQuery uniform plugin to style my html forms. Having a div with a defined width and overflow 'auto' cause a strange behave in IE7. If the content in the div is to large and scrollbars are ...
0
votes
1answer
112 views

Jquery Uniform change select size

How can I change the size of an input select using Jquery Uniform? http://uniformjs.com
0
votes
1answer
274 views

Jquery Uniform Update doesn't work

I'm using jquery uniform on one of the project I'm working on. Since this is admin panel, I truly don't have option to show. I will explain my problem What I'm trying to do is quite simple. I'm ...
0
votes
1answer
136 views

Validate dropdownlist using jquery

I have a registration form which uses one of jquery plugin for client side validation. I can validate textboxes and other controls but I have a problem with dropdownlist. I have a field on ...
0
votes
1answer
94 views

Django CheckboxSelectMultiple with django uni-form

I have a form in my django project with a ModelMultipleChoiceField rendered as a CheckboxSelectMultiple widget: class EventCreateForm(forms.Form): ... event_types = ...
0
votes
1answer
421 views

Change Select value using jQuery Uniform.js

I'm using uniform.js for jQuery and I need to change the values of the select item programmatically. It seems to change the actual <select> field, but the uniform element doesn't change. What is ...
0
votes
3answers
101 views

Checkbox doesn't work in replaced content

So I'm having some weird behaviours in my code and I don't know why. I'm using uniformjs so, for example a checkbox is like this: <label>Check Boxes</label> <div ...
0
votes
3answers
119 views

How to generate highly uniform random number in python?

In somehow I need an random function that can generate highly uniform numbers, such as, when I say [5,5], and I run this function for 10 times, I would like to have 5 number that are less than 0.5 and ...
0
votes
1answer
92 views

Converting multiple select to appear as a regular select

I'm currently slicing up a new site design and I want to make a multiple select look and feel the same way that a regular select does, but have the user control+click to choose multiple options. Does ...
0
votes
1answer
106 views

Autocad Vba --— Entity non-uniform resize

I am trying to write a VBA program for Autocad, and one of its function has to allow the user to select an entity in Autocad and scale it none uniformly. Currently i see offset and scaleentity method, ...
0
votes
1answer
152 views

How to keep this layout uniform across screen sizes

I would like to make the following layout, see picture below, where the place of the EditText views stay correct positioned w.r.t. the arrows. The layout below I've made with a RelativeLayout making ...
0
votes
1answer
220 views

Unable to use two uniform variables in GLSL Fragment Shader (only the first works)

I am trying to mix the colors of two textures in a fragment shader. But unfortunately i am stuck before the real work yet. Here is shader setup: const char* vertex = "void main(){ \n\ ...
0
votes
3answers
304 views

boost::random and boost:uniform_real works with doubles not with floats?

Pardon me if this has been discussed already. I've got a template function which uses boost::uniform_int and boost::uniform_real depending on the template argument and should return the same type: ...
0
votes
2answers
86 views

Passing GLfloat as a uniform fails (ios)

I have a shader that has the following uniform declared: uniform highp float fr; In my rendering method, it gets set accordingly: GLfloat num = 1.0f; glUniform1f(glGetUniformLocation(self.Program, ...
0
votes
4answers
194 views

Python's random.uniform() in C++?

I've been ripping my hair out for a while now with these random numbers in C++. In Python, I had the awesome: random.uniform(0, 1) Which churned out a new random number each time I called it. C++ ...

1 2