'What is the dimension of the difference of two vectors in python?
I tried to find the difference between two vectors on python colab. It returns a square matrix with the dimension being the number of rows of the vectors. As in np.subtract(y,X@genet).shape where y.shape returns (60,) and X@genet returns (60,). It is expected that np.subtract(y,X@genet).shape should return (60,) but it returned (60,60).
Solution 1:[1]
My problem has solved by this anwser [enter link description here][1] https://stackoverflow.com/questions/70361299/plugin-error-plugin-is-compatible-with-intellij-idea-only-because-it-doesnt
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | wresource |
