From 590dcfbdfa771331f500befebfa930e97a7323ff Mon Sep 17 00:00:00 2001 From: Marcell Vazquez-Chanlatte Date: Mon, 11 Feb 2019 17:11:28 -0800 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 779ec58..e992466 100644 --- a/README.md +++ b/README.md @@ -154,11 +154,11 @@ print(phi(data)) # Note, quantitative parameter defaults to False # Evaluate at t=3. -print(phi(data, t=3)) +print(phi(data, time=3)) # output: False # Compute sliding satisifaction. -print(phi(data, t=None) +print(phi(data, time=None) # output: [(0, True), (0.2, True), (4, False)] # Evaluate with discrete time @@ -180,7 +180,7 @@ print(phi(data)) # output: 100 # Evaluate at t=3 -print(phi(data, t=3)) +print(phi(data, time=3)) # output: 2 # Evaluate with discrete time