kangwonlee / kangwonlee/nmisp

influence of meta parameter

Open
#265 0 comments 0 reactions 0 assignees View on GitHub
enhancement
Dominant language
Jupyter Notebook
Stars
12
Forks
76
PR merge metrics
No merged PRs in 30d

Description

``` python
import pylab as py

n = 1000
x_deg = py.linspace(0, 180, n)
x_rad = py.deg2rad(x_deg)
y = py.cos(x_rad)

def my_cos(x_deg):
return py.cos(py.deg2rad(x_deg))

num_int_0(my_cos, 0, 180, n, b_verbose=False)

n_array = py.logspace(1, 3)
y_list = []
for n in n_array:
y_list.append(
num_int_0(my_cos, 0, 180, int(n), b_verbose=False)
)

py.semilogx(n_array, y_list, '.')
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.