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

library functions #17

Open
btsaubt opened this issue Dec 15, 2017 · 4 comments
Open

library functions #17

btsaubt opened this issue Dec 15, 2017 · 4 comments
Assignees

Comments

@btsaubt
Copy link
Owner

btsaubt commented Dec 15, 2017

No description provided.

@btsaubt
Copy link
Owner Author

btsaubt commented Dec 18, 2017

printing, built-in functions, and matrix overloaders should be done in here (after overloaded in semant)

@btsaubt
Copy link
Owner Author

btsaubt commented Dec 18, 2017

scalar multiplication:
scalar_mult_veci(int, int[])
scalar_mult_vecf(float, float[])
scalar_mult_mati(int, int[][])
scalar_mult_maf(float, float[][])

vector/matrix cross/dot product
vec_dot_producti(int[], int[])
vec_dot_productf(float[], float[])
vec_mat_multi(int[], int[][])
vec_mat_multf(float[], float[][])
mat_vec_multi(int[], int[][])
mat_vec_multf(float[], float[][])
mat_mat_multi(int[][], int[][])
mat_mat_multf(float[][], float[][])

vector/matrix addition
vec_vec_addi(int[], int[])
vec_vec_addf(float[], float[])
mat_mat_addi(int[][], int[][])
mat_mat_addf(float[][], float[][])

please have these done asap!! they will need to use length/size

@teresa
Copy link
Collaborator

teresa commented Dec 19, 2017

conversions

@teresa
Copy link
Collaborator

teresa commented Dec 19, 2017

subtraction

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

No branches or pull requests

4 participants