summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2025-03-22bump: cargo versionHEADmasterZhongheng Liu
2025-03-18test: thingZhongheng Liu
2025-02-14feat: create subtraction of matricesZhongheng Liu
2025-01-25chore(cargo): bump semVerZhongheng Liu
2025-01-25chore(cargo): bump semVerZhongheng Liu
2025-01-25feat: support float and better test caseZhongheng Liu
tests: use function to generate data, in future can use JSON test data record to do it matrix: use f32 type
2025-01-25chore(cargo): bump semVerZhongheng Liu
2025-01-25feat: matrix mathZhongheng Liu
mul: impl Mul for LHS: i32, RHS: Matrix trait: trait MatrixMath definition for cofactor, minors, adjoint, determinant
2025-01-23fix: correct from functionZhongheng Liu
2025-01-23chore: bump cargo verZhongheng Liu
2025-01-23feat(from): impl From i32 vectorZhongheng Liu
2025-01-23feat(matrix_op): add multiplicationZhongheng Liu
matrix_ops: add matrix multiply capability chore(fmt): flatten crate directory tests(ops): add tests for multiplication
2025-01-23feat!: method stubs for mult and subZhongheng Liu
2025-01-23Merge branch 'master' of homelab-fedora:stvnliu/matrix-rsZhongheng Liu
2025-01-23chore: add cargo descriptionZhongheng Liu
2025-01-23chore: add cargo descriptionZhongheng Liu
2025-01-23chore: bump project versionZhongheng Liu
2025-01-23docs: write more documentationZhongheng Liu
2025-01-23chore(meta): update name and metadataZhongheng Liu
2025-01-22chore: update cargo tomlZhongheng Liu
2025-01-22chore(cargo): convert project to libZhongheng Liu
now the project is called libmatrix
2025-01-22feat: various fixesZhongheng Liu
clippy: rm unnecessary borrows structure: move struct definitions around tests: add unit test for matrix operations errors: add custom error types
2025-01-22fix: fixed row/column check in addZhongheng Liu
2025-01-22chore: update main rs to testZhongheng Liu
2025-01-22chore: cleanup some thingsZhongheng Liu
2025-01-22fix: fixed incorrect determinant sumZhongheng Liu
2025-01-22feat: add display trait to matrixZhongheng Liu
2025-01-22init: first working impl of determinantZhongheng Liu
types: added initial matrix definition and impl blocks