<html>
<body>


  



  hi all,<br>
  currently I use<br>
  a = array(m,n)<br>
  ...<br>
  a = delete(a, indices, 0) # delete some rows<br>
  <br>
  Can I somehow perform the operation in-place, without creating auxiliary array?<br>
  If I'll use<br>
  <br>
  numpy.compress(condition, a, axis=0, out=a),<br>
  or<br>
  numpy.take(a, indices, axis=0, out=a)<br>
  <br>
  will the operation be inplace?<br>
  <br>
  Thank you in advance,<br>
  D.<br>



</body>
</html>