Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add array operations to cairo functions #66

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on May 21, 2022

  1. Add ´is_even(value, rc_bound)´ function

    * asserts value is an integer
    * asserts value is within the (-rc_bound, rc_bound) range
    * returns true if value is even
    omarespejel committed May 21, 2022
    Configuration menu
    Copy the full SHA
    0e2899e View commit details
    Browse the repository at this point in the history

Commits on May 22, 2022

  1. Add array operations

    * sum - Compute the sum of the element in an array.
    * mean - Compute the arithmetic mean along the array.
    * scalar_product - Compute the scalar multiplication of an array.
    * median - Compute the median along the array.
    * dot - Compute the dot product of two arrays.
    * min - Obtain the minimum value in an array.
    * max - Obtain the maximum value in an array.
    omarespejel committed May 22, 2022
    Configuration menu
    Copy the full SHA
    c979586 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bcf5bad View commit details
    Browse the repository at this point in the history