Egor erius
  • Joined on 2024-05-12
erius pushed to main at erius/mathematical 2024-05-24 23:30:24 +00:00
f53170b16b Moved matrix yew components to file matrix.rs, minor refactoring
erius pushed to main at erius/mathematical 2024-05-24 14:19:01 +00:00
881236c725 Generic type T for Matrix and SquareMatrix is now bound by the trait Copy instead of Clone
erius pushed to main at erius/mathematical 2024-05-23 23:42:22 +00:00
e4e17953e2 Added append_row, append_column, append_row_zeroes and append_column_zeroes methods to math::matrix::Matrix + some tests
199805aafc Added favicon and styles index.scss files, updated .gitignore
Compare 2 commits »
erius pushed to main at erius/mathematical 2024-05-23 08:44:00 +00:00
f62c06a49b Added crate web with sample yew code, added trunk config file
erius pushed to main at erius/mathematical 2024-05-23 08:09:20 +00:00
211fc67cf2 Restructured the project to use cargo workspace, math module is now a separate crate
a998ec4339 Implemented matrix multiplication, added tests for matrix mul and iter
Compare 2 commits »
erius pushed to main at erius/mathematical 2024-05-22 23:16:01 +00:00
7cad1b8dfc Implemented row, column, column_iter and column_iters methods, added more tests
erius pushed to main at erius/mathematical 2024-05-18 13:16:57 +00:00
60a7ae725a ColumnIter
erius pushed to main at erius/mathematical 2024-05-18 10:19:41 +00:00
0397811247 todo: finish matrix mul
erius pushed to main at erius/mathematical 2024-05-18 09:49:09 +00:00
79d94bf357 Restructured matrix module, it is now separated into 1 primary module matrix (struct definition, init methods and getters) and 3 sub-modules: iter - structs and methods for iteration, arithmetic - impl of traits for arithmetic operations, ops - non-arithmetic matrix operations
erius pushed to main at erius/mathematical 2024-05-17 10:34:04 +00:00
a2e311f295 Separated Num and Num + Clone implementations
erius pushed to main at erius/mathematical 2024-05-14 11:25:03 +00:00
25c1f55254 Changed generic type T of matrix to only accept Num + Clone
erius closed issue erius/LuaScripts#1 2024-05-13 08:39:59 +00:00
test
erius opened issue erius/LuaScripts#1 2024-05-13 08:39:49 +00:00
test
erius pushed to main at erius/mathematical 2024-05-13 08:35:25 +00:00
883df942ea Added into_iter, iter and iter_mut methods to Matrix, restructured math modules