Graphs
|
Before Width: | Height: | Size: 167 KiB After Width: | Height: | Size: 228 KiB |
20002
figures/dla-eg.svg
|
Before Width: | Height: | Size: 626 KiB After Width: | Height: | Size: 670 KiB |
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
400038
figures/rmax-n.svg
|
Before Width: | Height: | Size: 20 MiB After Width: | Height: | Size: 20 MiB |
@ -1,15 +1,18 @@
|
|||||||
import matplotlib.pyplot as plt
|
import matplotlib.pyplot as plt
|
||||||
|
import numpy as np
|
||||||
|
|
||||||
from lib.graphs import cr_n
|
from lib.graphs import cr_n
|
||||||
from lib.lib import read_load
|
from lib.lib import read_load
|
||||||
|
|
||||||
alpha = read_load("../data/alpha")
|
alpha = read_load("../data/alpha")
|
||||||
|
|
||||||
cr_n(
|
p, pcov = cr_n(
|
||||||
alpha,
|
alpha,
|
||||||
ignore_prefix=50
|
ignore_prefix=50
|
||||||
)
|
)
|
||||||
|
|
||||||
|
print(f"{p} {np.diag(np.sqrt(pcov))}")
|
||||||
|
|
||||||
plt.savefig('../figures/rmax-n.svg')
|
plt.savefig('../figures/rmax-n.svg')
|
||||||
plt.savefig('../figures/rmax-n.png')
|
plt.savefig('../figures/rmax-n.png')
|
||||||
plt.show()
|
plt.show()
|
||||||
|
|||||||