Skip to content

Commit

Permalink
Update ZMCintegral.ipynb
Browse files Browse the repository at this point in the history
  • Loading branch information
Letianwu authored Oct 24, 2018
1 parent 54ebf35 commit 86ee75d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ZMCintegral/ZMCintegral.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@
" \n",
" # Stop digging if there are no more large stddev chunk\n",
" if len(large_std_chunk_id) == 0:\n",
" return np.sum(MCresult_chunks,0), np.max(MCresult_std_chunks)\n",
" return np.sum(MCresult_chunks,0), np.sqrt(np.sum(MCresult_std_chunks**2))\n",
"\n",
" return np.sum(MCresult_chunks,0), np.max(MCresult_std_chunks)\n",
" return np.sum(MCresult_chunks,0), np.sqrt(np.sum(MCresult_std_chunks**2))\n",
" \n",
" def MCevaluate(self, domain):\n",
"\n",
Expand Down

0 comments on commit 86ee75d

Please sign in to comment.