Replies: 6 comments 5 replies
-
Any recommendations for books for teaching how to write code of matrix from scratch without calling exsited libary |
Beta Was this translation helpful? Give feedback.
-
V.prod() or M.prod() for the product of array elements over. |
Beta Was this translation helpful? Give feedback.
-
It will be nice to be able to calculate Logarithm of a matrix. |
Beta Was this translation helpful? Give feedback.
-
I would like to be able to use quaternions. I would like to go back and froth between quaternions and matrix rotations |
Beta Was this translation helpful? Give feedback.
-
I would also like a projection matrix |
Beta Was this translation helpful? Give feedback.
-
Also projections of a vector onto another vector |
Beta Was this translation helpful? Give feedback.
-
In many engineering fields, we need to use functions related to small matrices (2x2 or 3x3) such as single value decomposition (SVD), eigendecomposition, and more. Some are already implemented in Taichi shown in the following table.
Note : V for vector, M for matrix
But we feel that there may be functions that are needed in areas we are unaware of. In that spirit, we'd like to hear more from the community.
If you ever tried to implement a feature by yourself, chances are high that many people in the community also need it. We encourage you to bring up relevant features to this discussion. Together, we will implement these wanted small linear algebra functions to make our Taichi kernels easier to write.
Beta Was this translation helpful? Give feedback.
All reactions