我有一个由两列和8269行组成的NumPy数组。我希望能够将第二列的所有值乘以10 ^ -10。我是编程新手,不知道如何引用NumPy数组的单列的每一行。谢谢!
答案 0 :(得分:0)
使用@ karma4917的答案中的numpy.nditer:
<ui-select multiple theme="bootstrap" ng-model="updateStaff.staffs_id" class="calendar-staffs">
<ui-select-match placeholder="Choose staffs"><% $item.title %></ui-select-match>
<ui-select-choices ui-disable-choice="sel_staff.status === 'chosen'" repeat="sel_staff.id as sel_staff in staff_update | filter: $select.search">
<span ng-bind="sel_staff.title"></span>
</ui-select-choices>
</ui-select>
对我来说,一个2696行的数组花了0.0045秒。