Skip to content

Commit

Permalink
Improve functions documentation, regenerate.
Browse files Browse the repository at this point in the history
  • Loading branch information
sletz committed May 31, 2021
1 parent 55a81fb commit df2f75e
Show file tree
Hide file tree
Showing 10 changed files with 124 additions and 124 deletions.
54 changes: 27 additions & 27 deletions aanl.lib
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ ADAA2(EPS, f, F1, F2, x) = T1 + T2
//
// #### Usage
// ```
// _ : aa.hardclip : _;
// _ : aa.hardclip : _
// ```

declare hardclip author "Dario Sanfilippo";
Expand All @@ -203,7 +203,7 @@ hardclip(x) = ADAA1(EPS, f, F1, x)
//
// #### Usage
// ```
// _ : aa.hardclip2 : _;
// _ : aa.hardclip2 : _
// ```

declare hardclip2 author "Dario Sanfilippo";
Expand Down Expand Up @@ -233,7 +233,7 @@ hardclip2(x) = ADAA2(EPS, f, F1, F2, x)
//
// #### Usage
// ```
// _ : aa.cubic1 : _;
// _ : aa.cubic1 : _
// ```

declare cubic1 author "Dario Sanfilippo";
Expand Down Expand Up @@ -262,7 +262,7 @@ cubic1(x) = ADAA1(EPS, f, F1, x)
//
// #### Usage
// ```
// _ : aa.parabolic : _;
// _ : aa.parabolic : _
// ```

declare parabolic author "Dario Sanfilippo";
Expand Down Expand Up @@ -290,7 +290,7 @@ parabolic(x) = ADAA1(EPS, f, F1, x)
//
// #### Usage
// ```
// _ : aa.parabolic : _;
// _ : aa.parabolic : _
// ```

declare parabolic2 author "Dario Sanfilippo";
Expand Down Expand Up @@ -322,7 +322,7 @@ parabolic2(x) = ADAA2(EPS, f, F1, F2, x)
//
// #### Usage
// ```
// _ : aa.hyperbolic : _;
// _ : aa.hyperbolic : _
// ```
declare hyperbolic author "Dario Sanfilippo";
declare hyperbolic copyright "Copyright (C) 2021 Dario Sanfilippo
Expand All @@ -344,7 +344,7 @@ hyperbolic(x) = ADAA1(EPS, f, F1, x)
//
// #### Usage
// ```
// _ : aa.hyperbolic2 : _;
// _ : aa.hyperbolic2 : _
// ```
declare hyperbolic2 author "Dario Sanfilippo";
declare hyperbolic2 copyright "Copyright (C) 2021 Dario Sanfilippo
Expand All @@ -368,7 +368,7 @@ hyperbolic2(x) = ADAA2(EPS, f, F1, F2, x)
//
// #### Usage
// ```
// _ : aa.sinatan : _;
// _ : aa.sinatan : _
// ```
declare sinarctan author "Dario Sanfilippo";
declare sinarctan copyright "Copyright (C) 2021 Dario Sanfilippo
Expand All @@ -393,7 +393,7 @@ sinarctan(x) = ADAA1(EPS, f, F1, x)
//
// #### Usage
// ```
// _ : aa.sinarctan2 : _;
// _ : aa.sinarctan2 : _
// ```
declare sinarctan2 author "Dario Sanfilippo";
declare sinarctan2 copyright "Copyright (C) 2021 Dario Sanfilippo
Expand All @@ -419,7 +419,7 @@ sinarctan2(x) = ADAA2(EPS, f, F1, F2, x)
//
// #### Usage
// ```
// _ : aa.tanh1 : _;
// _ : aa.tanh1 : _
// ```
declare tanh1 author "Dario Sanfilippo";
declare tanh1 copyright "Copyright (C) 2021 Dario Sanfilippo
Expand All @@ -441,7 +441,7 @@ tanh1(x) = ADAA1(EPS, f, F1, x)
//
// #### Usage
// ```
// _ : aa.arctan : _;
// _ : aa.arctan : _
// ```
declare arctan author "Dario Sanfilippo";
declare arctan copyright "Copyright (C) 2021 Dario Sanfilippo
Expand All @@ -463,7 +463,7 @@ arctan(x) = ADAA1(EPS, f, F1, x)
//
// #### Usage
// ```
// _ : aa.arctan2 : _;
// _ : aa.arctan2 : _
// ```
declare arctan2 author "Dario Sanfilippo";
declare arctan2 copyright "Copyright (C) 2021 Dario Sanfilippo
Expand All @@ -486,7 +486,7 @@ arctan2(x) = ADAA2(EPS, f, F1, F2, x)
//
// #### Usage
// ```
// _ : aa.asinh1 : _;
// _ : aa.asinh1 : _
// ```
declare asinh1 author "Dario Sanfilippo";
declare asinh1 copyright "Copyright (C) 2021 Dario Sanfilippo
Expand All @@ -512,7 +512,7 @@ asinh1(x) = ADAA1(EPS, f, F1, x)
//
// #### Usage
// ```
// _ : aa.asinh2 : _;
// _ : aa.asinh2 : _
// ```
declare asinh2 author "Dario Sanfilippo";
declare asinh2 copyright "Copyright (C) 2021 Dario Sanfilippo
Expand Down Expand Up @@ -545,7 +545,7 @@ asinh2(x) = ADAA2(EPS, f, F1, F2, x)
//
// #### Usage
// ```
// _ : aa.cosine1 : _;
// _ : aa.cosine1 : _
// ```
declare cosine1 author "Dario Sanfilippo";
declare cosine1 copyright "Copyright (C) 2021 Dario Sanfilippo
Expand All @@ -567,7 +567,7 @@ cosine1(x) = ADAA1(EPS, f, F1, x)
//
// #### Usage
// ```
// _ : aa.cosine2 : _;
// _ : aa.cosine2 : _
// ```
declare cosine2 author "Dario Sanfilippo";
declare cosine2 copyright "Copyright (C) 2021 Dario Sanfilippo
Expand All @@ -592,7 +592,7 @@ cosine2(x) = ADAA2(EPS, f, F1, F2, x)
//
// #### Usage
// ```
// _ : aa.arccos : _;
// _ : aa.arccos : _
// ```
declare arccos author "Dario Sanfilippo";
declare arccos copyright "Copyright (C) 2021 Dario Sanfilippo
Expand Down Expand Up @@ -621,7 +621,7 @@ arccos(x) = ADAA1(EPS, f, F1, x)
//
// #### Usage
// ```
// _ : aa.arccos2 : _;
// _ : aa.arccos2 : _
// ```
declare arccos2 author "Dario Sanfilippo";
declare arccos2 copyright "Copyright (C) 2021 Dario Sanfilippo
Expand All @@ -648,7 +648,7 @@ arccos2(x) = ADAA2(EPS, f, F1, F2, x)
//
// #### Usage
// ```
// _ : aa.acosh1 : _;
// _ : aa.acosh1 : _
// ```
declare acosh1 author "Dario Sanfilippo";
declare acosh1 copyright "Copyright (C) 2021 Dario Sanfilippo
Expand All @@ -673,7 +673,7 @@ acosh1(x) = ADAA1(EPS, f, F1, x)
//
// #### Usage
// ```
// _ : aa.acosh2 : _;
// _ : aa.acosh2 : _
// ```
declare acosh2 author "Dario Sanfilippo";
declare acosh2 copyright "Copyright (C) 2021 Dario Sanfilippo
Expand All @@ -698,7 +698,7 @@ acosh2(x) = ADAA2(EPS, f, F1, F2, x)
//
// #### Usage
// ```
// _ : aa.sine : _;
// _ : aa.sine : _
// ```
declare sine author "Dario Sanfilippo";
declare sine copyright "Copyright (C) 2021 Dario Sanfilippo
Expand All @@ -720,7 +720,7 @@ sine(x) = ADAA1(EPS, f, F1, x)
//
// #### Usage
// ```
// _ : aa.sine2 : _;
// _ : aa.sine2 : _
// ```
declare sine2 author "Dario Sanfilippo";
declare sine2 copyright "Copyright (C) 2021 Dario Sanfilippo
Expand All @@ -744,7 +744,7 @@ sine2(x) = ADAA2(EPS, f, F1, F2, x)
//
// #### Usage
// ```
// _ : aa.arcsin : _;
// _ : aa.arcsin : _
// ```
declare arcsin author "Dario Sanfilippo";
declare arcsin copyright "Copyright (C) 2021 Dario Sanfilippo
Expand Down Expand Up @@ -773,7 +773,7 @@ arcsin(x) = ADAA1(EPS, f, F1, x)
//
// #### Usage
// ```
// _ : aa.arcsin2 : _;
// _ : aa.arcsin2 : _
// ```
declare arcsin2 author "Dario Sanfilippo";
declare arcsin2 copyright "Copyright (C) 2021 Dario Sanfilippo
Expand All @@ -800,7 +800,7 @@ arcsin2(x) = ADAA2(EPS, f, F1, F2, x)
//
// #### Usage
// ```
// _ : aa.tangent : _;
// _ : aa.tangent : _
// ```
declare tangent author "Dario Sanfilippo";
declare tangent copyright "Copyright (C) 2021 Dario Sanfilippo
Expand All @@ -822,7 +822,7 @@ tangent(x) = ADAA1(EPS, f, F1, x)
//
// #### Usage
// ```
// _ : aa.atanh1 : _;
// _ : aa.atanh1 : _
// ```
declare atanh1 author "Dario Sanfilippo";
declare atanh1 copyright "Copyright (C) 2021 Dario Sanfilippo
Expand All @@ -844,7 +844,7 @@ atanh1(x) = ADAA1(EPS, f, F1, x)
//
// #### Usage
// ```
// _ : aa.atanh2 : _;
// _ : aa.atanh2 : _
// ```
declare atanh2 author "Dario Sanfilippo";
declare atanh2 copyright "Copyright (C) 2021 Dario Sanfilippo
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -387,5 +387,5 @@ <h4 class="modal-title" id="keyboardModalLabel">Keyboard Shortcuts</h4>

<!--
MkDocs version : 1.1.2
Build Date UTC : 2021-05-30 07:49:37.873931+00:00
Build Date UTC : 2021-05-31 11:25:09.449526+00:00
-->
Loading

0 comments on commit df2f75e

Please sign in to comment.