mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-05-14 11:33:42 +02:00
Complex matrix multiplication speed up my explicitly coding the
derivatives
This commit is contained in:
parent
b1e5777586
commit
877b1a4467
2 changed files with 15 additions and 1 deletions
|
@ -204,6 +204,10 @@ def test_cobs():
|
|||
assert (my_cobs - my_cobs.conjugate()).real.is_zero()
|
||||
assert not (my_cobs - my_cobs.conjugate()).imag.is_zero()
|
||||
np.abs(my_cobs)
|
||||
|
||||
assert (my_cobs * my_cobs / my_cobs - my_cobs).is_zero()
|
||||
assert (my_cobs + my_cobs - 2 * my_cobs).is_zero()
|
||||
|
||||
fs = [[lambda x: x[0] + x[1], lambda x: x[1] + x[0]],
|
||||
[lambda x: x[0] * x[1], lambda x: x[1] * x[0]]]
|
||||
for other in [1, 1.1, (1.1-0.2j), pe.CObs(obs1), pe.CObs(obs1, obs2)]:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue