-
Updated
May 16, 2020 - Swift
matrix
Here are 1,730 public repositories matching this topic...
-
Updated
Jun 12, 2020 - C++
-
Updated
Jan 31, 2020 - Java
Using multiple [[gateway]]
The help currently reads:
Vector S get; set;
Gets the singular values (Σ) of matrix in ascending value.
It should be:
descending order of magnitude.
Hi everyone,
I am building a sensor fusion framework based on nalgebra, and found out that we do not have support for Lie algebra operations like expmap and logmap. Is is appropriate to add them here or should I implement them in my own crate by using some traits?
Many thanks,
Fan
-
Updated
May 23, 2020 - PHP
-
Updated
Feb 26, 2020 - C++
I am submitting a Feature Request
Lack of description of the "-l" lock option in the man page.
The option is proposed when you type "cmatrix -h" to get help text, but anything in man page.
Request :
Complete the man page (and add the manner to quit this lock screen.)
Or suppress this option that force you to reboot if you don't know how to "unlock"
Tested on GNU/Linux Debian 10 Buster
-
Updated
Apr 12, 2020
-
Updated
Jun 8, 2020 - Python
In several places for postgres, we CREATE SEQUENCE .... We do this for every table which uses the sequence, partly for clarity and partly so we don't assume someone else has done it for us.
Instead, we should put these database-level SQL queries in a dedicated section, rather than in each _table.go.
-
Updated
May 18, 2020 - Clojure
-
Updated
Jun 13, 2020 - OCaml
In the documentation, the sentence A trait representing an affine transformation that can be applied to points or vectors. An affine transformation is one which is cut off. I'm not sure how it's meant to end and don't know enough about what an affine transformation is to fix it, but thought I'd point it out
Docs about dest param :
"You can pass all parameter same (this is similar to m1 *= m1), you can pass dest as m1 or m2 (this is similar to m1 *= m2)" (c)
But some functions behave differently. For example:
vec3 A = {0,0,2};
vec3 B = {2,0,0};
glm_vec3_cross(A, B, A); // A = {0, 4, -8} was expected A = {0, 4, 0}
-
Updated
Jun 10, 2020 - TypeScript
-
Updated
Apr 23, 2020 - MATLAB
-
Updated
Jun 6, 2020 - JavaScript
Using DocFX, it’s possible to automatically get a documentation website that is in synced with the source implementation. A good use case for this proposal is to quickly check the differences between the math library here and the one located in opentk.
Alternatives
None at the time.
-
Updated
Nov 11, 2017 - C
-
Updated
Apr 11, 2020 - HTML
When installing on OSX Catalina, the system prevents installation by double clicking and the basic right click open doesn't work either.
The correct way to install is to open system preferences > Security & Privacy and click the allow button on the screen.
Current normalization code is as follows:
public Vector3d normalize(Vector3d dest) {
double invLength = 1.0 / length();
dest.x = x * invLength;
dest.y = y * invLength;
dest.z = z * invLength;
return dest;
}Instead division by zero should always be avoided, and the code should be something like the following to prevent divis
Quaternion sends (-1,-1) for image dimensions when requesting an author avatar. This is because the respective QML defines width and height but not sourceSize - which is, obviously, a shortcoming.
Improve this page
Add a description, image, and links to the matrix topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the matrix topic, visit your repo's landing page and select "manage topics."
For now only strings are accepted as the
measuresparameter inGridSearchCV,RandomizedSearchCV, andcross_validate. It's thus impossible to use those with measures that take specific parameters as input (e.g. #156 ), or to use custom measures.We should then accept callables in addition to strings.
Each callable should only take the
predictionsparameter. In order to handle measur