Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #94444
| From | Jeremy Sanders <jeremy@jeremysanders.net> |
|---|---|
| Subject | Re: Optimizing if statement check over a numpy value |
| Date | 2015-07-23 13:42 +0200 |
| References | <65c45685-dee1-41f8-a16a-7a062f4e7b02@googlegroups.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.912.1437651747.3674.python-list@python.org> (permalink) |
Heli Nix wrote: > Is there any way that I can optimize this if statement. Array processing is much faster in numpy. Maybe this is close to what you want import numpy as N # input data vals = N.array([42, 1, 5, 3.14, 53, 1, 12, 11, 1]) # list of items to exclude exclude = [1] # convert to a boolean array exclbool = N.zeros(vals.shape, dtype=bool) exclbool[exclude] = True # do replacement ones = vals==1.0 # Note: ~ is numpy.logical_not vals[ones & (~exclbool)] = 1e-20 I think you'll have to convert your HDF array into a numpy array first, using numpy.array(). Jeremy
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Optimizing if statement check over a numpy value Heli Nix <hemla21@gmail.com> - 2015-07-23 02:21 -0700
Re: Optimizing if statement check over a numpy value MRAB <python@mrabarnett.plus.com> - 2015-07-23 10:55 +0100
Re: Optimizing if statement check over a numpy value Laura Creighton <lac@openend.se> - 2015-07-23 12:13 +0200
Re: Optimizing if statement check over a numpy value Jeremy Sanders <jeremy@jeremysanders.net> - 2015-07-23 13:42 +0200
Re: Optimizing if statement check over a numpy value Heli Nix <hemla21@gmail.com> - 2015-07-29 07:23 -0700
csiph-web