The iterators tag has no wiki summary.
2
votes
1answer
56 views
Passing an iterator [duplicate]
The code
Table[i, {i, 5}]
produces the output
{1, 2, 3, 4, 5}
whereas the code
...
0
votes
0answers
256 views
Jacobi eigenvalue and eigenvectors algorithm
Suppose we have a symmetric matrix with dimensions n x n. I need to find the eigenvalues and eigenvectors of this matrix using the Jacobi method. I wrote this code:
...