Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
476 views

Python/Numpy - Masked Arrays are Very Slow

Is there anything I can do to speed up masked arrays in numpy? I had a terribly inefficient function that I re-wrote to use masked arrays (where I could just mask rows instead of make copies and ...
5
votes
2answers
206 views

Numpy masked arrays - indicating missing values

import numpy as np import numpy.ma as ma """This operates as expected with one value masked""" a = [0., 1., 1.e20, 9.] error_value = 1.e20 b = ma.masked_values(a, error_value) print b """This does ...
3
votes
1answer
236 views

Indexing with Masked Arrays in numpy

I have a bit of code that attempts to find the contents of an array at indices specified by another, that may specify indices that are out of range of the former array. input = np.arange(0, 5) ...
2
votes
1answer
300 views

Python scatter plot with numpy-masked arrays

I'm stuck trying to mask data for a scatter plot. All data seems to plot. I'm using numpy arrays as shown in the snippet below. I'm thinking that perhaps I cannot mask on the "c" array. I can't ...
2
votes
2answers
464 views

How to create the histogram of an array with masked values, in Numpy?

In Numpy 1.4.1, what is the simplest or most efficient way of calculating the histogram of a masked array? numpy.histogram and pyplot.hist do count the masked elements, by default! The only simple ...
2
votes
4answers
3k views

I need masked textbox in asp.net

only numbers must be in that textbox that entries have to be in 100 between 500 TextBox Needed to include 3 Decimal Places i dont want any mistakes while values inserting to database. Do i need to ...
1
vote
0answers
287 views

masked arrays in numpy error

I input a file using genfromtxt and some of the values are missing so I generate a masked array. When I try to index some of the values of the records of the masked array I get an error which I ...
1
vote
0answers
266 views

jQuery Mask for Documents Leading Zeroes and Right to Left

Hy people, I´m using jquery.maskedit plugin for few fields in my application and I cannot figure the way to compose a mask like this: Document: 000000-0 I need the field to be filled always with ...
1
vote
1answer
350 views

masked input: I can't get the simplest completion to work

Trying to use Josh Bush's masked input plugin. I want to shift focus and do other things once the person puts their cell phone in. I mask to a phone shape. When I hit the last letter, I want it to ...
1
vote
1answer
573 views

Masked TextBox, how to include the promptchar to value?

How to include the prompt char on masked textbox's Text? I also want to save the prompt char Example i specify mask: &&&&/&& And prompt char of _ Then I enter 12 4/5. ...
0
votes
0answers
27 views

Masked Input Plugin

I need to do an implementation in the "Masked Input Plugin" to make it work masks accepting the following values: (99) 9999-9999 or (99) 99999-9999 I tried this: $('.tel').mask('(99) 9999? ...
0
votes
1answer
49 views

Masked input Plugin with date limit

I use masked input on a input text field for a date in the MM/YYYY format. ( http://digitalbush.com/projects/masked-input-plugin/ ) My javascript code: jQuery(function($){ ...
0
votes
0answers
162 views

winforms masked textbox prompt padding to fixed size

using vs2008 c# winforms Im using a masked textbox control and i cant figure out if there is a way to make it behave in a certain way on the form. I want user to enter a number in the mask format of ...
0
votes
1answer
302 views

ajaxToolkit:MaskedEditExtender Problem

I'm using this mask: <ajaxToolkit:MaskedEditExtender Mask="99%" MaskType="Number" ClearMaskOnLostFocus="true" ClearTextOnInvalid="true" AcceptNegative="Left" ID="percent" runat="server" ...
0
votes
1answer
160 views

difference between rad masked text input and radmasked text box?

well i tried their web site also,they are only providing details regarding there use i mean about controls. what is the exact difference between both of the above mentioned?
0
votes
1answer
294 views

jquery masked input

I'm having a little issue with a masked input with jquery: the problem is ,how cn i input the different phone number in the same textfiled ? eg : the frst 1 i wnt to input 09-99999999 and the ...
0
votes
1answer
96 views

masked box asp.net

I use masked edit box control in my application. When user click masked edit box, cursor locate in middle of control or end of control. users have to use cursor key to bring cursor front of control. ...
0
votes
1answer
137 views

How do I keep existing values from shifting to the right when entering keypresses into a jQuery Masked Input?

I have a text box I'm using as a timer display "hh:mm:ss" When I select the box and press a number, it inserts the number at the cursor location, but instead of replacing the value at that position, ...