You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The galois.Poly class currently supports univariate polynomials, but not multivariate polynomials, over $GF(p^m)$. I would like to propose supporting this functionality in galois.
The following code snippet demonstrates how to generate a random univariate polynomial which we may evaluate on scalars, arrays, or square matrices:
By contrast, the following pseudo-code demonstrates how one might generate a random multivariate polynomial which we may evaluate on arrays of shape (..., n_variables) only:
The$GF(p^m)$ . I would like to propose supporting this functionality in
galois.Poly
class currently supports univariate polynomials, but not multivariate polynomials, overgalois
.The following code snippet demonstrates how to generate a random univariate polynomial which we may evaluate on scalars, arrays, or square matrices:
By contrast, the following pseudo-code demonstrates how one might generate a random multivariate polynomial which we may evaluate on arrays of shape
(..., n_variables)
only:I look forward to hearing any thoughts and suggestions!
The text was updated successfully, but these errors were encountered: