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 M × N matrix scalar multiplication support #79

Open
chrissimpkins opened this issue Jan 12, 2022 · 0 comments · May be fixed by #68
Open

Add M × N matrix scalar multiplication support #79

chrissimpkins opened this issue Jan 12, 2022 · 0 comments · May be fixed by #68

Comments

@chrissimpkins
Copy link
Owner

Requirements:

  • any M by N matrix size
  • any supported T numeric scalar type

Properties:

  • Associative: where c, d are scalar values and A is a matrix, (cd)A=c(dA)
  • Distributive: where c,d are scalar values and A, B are matrices with the same dimension c(A+B)=cA+cB and (c+d)A=cA+dA
  • Multiplicative identity: where 1 is the scalar value 1 and A is a matrix 1A=A
  • Multiplicative property with zero: where 0 is the scalar value 0, A is a matrix, and O is the zero matrix with the same dimensions as A: 0⋅A=O
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant