Commit 3206bc59 authored by Joon Ro's avatar Joon Ro

Fixed indentation of a code example

Fixed a code example which had been indented with 2 spaces.

--HG--
extra : transplant_source : %C2%2A8%18%CE%18%87f%BD%E5%0D%5D%90%BA%A0%40%3B%FA%B3%A6
parent b9caa7fa
...@@ -49,15 +49,15 @@ fast for use from Cython and one slower for use from Python. Then:: ...@@ -49,15 +49,15 @@ fast for use from Cython and one slower for use from Python. Then::
Using this, we can now change our integration example:: Using this, we can now change our integration example::
def integrate(Function f, double a, double b, int N): def integrate(Function f, double a, double b, int N):
cdef int i cdef int i
cdef double s, dx cdef double s, dx
if f is None: if f is None:
raise ValueError("f cannot be None") raise ValueError("f cannot be None")
s = 0 s = 0
dx = (b-a)/N dx = (b-a)/N
for i in range(N): for i in range(N):
s += f.evaluate(a+i*dx) s += f.evaluate(a+i*dx)
return s * dx return s * dx
print(integrate(SinOfSquareFunction(), 0, 1, 10000)) print(integrate(SinOfSquareFunction(), 0, 1, 10000))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment