Skip to content

Commit be2439a

Browse files
committed
update case3 fixture to adjust x1 range
1 parent 19b7013 commit be2439a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_odr_fit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def f(x: np.ndarray, beta: np.ndarray) -> np.ndarray:
6565
return y
6666

6767
beta_star = np.array([1.0, 2.0, 3.0])
68-
x1 = np.linspace(-1.0, 1.0, 31)
68+
x1 = np.linspace(0.5, 2.0, 31)
6969
x = np.vstack((x1, np.exp(x1), x1**2))
7070
y = f(x, beta_star)
7171

0 commit comments

Comments
 (0)