My code is
$PrePrint = If[MatrixQ[#], MatrixForm[#], #] &;
t = {
{-2,3,0,-3},
{-1,-2,2,1},
{-2,0,2,-1},
{1,-3,1,3}
};
EVt = Eigenvectors[t]
For[i=1,i<=2,i++,
Indexed[EVt,i]
]
And my output ist.
{{-1, 1, 0, 2}, {1, 1, 2, 0}, {(-3 - I*Sqrt[3])/2, (-1/2*I)*(I + Sqrt[3]), (-1 - I*Sqrt[3])/2, 1}, {(-3 + I*Sqrt[3])/2, (I/2)*(-I + Sqrt[3]), (-1 + I*Sqrt[3])/2
Note because of the PrePrint it is actually in a "nice" matrix shape. What I now want is, every vector printed on its own. But the For loop just outputs nothing. I'm an absolut beginner in Mathematica so I don't understand, what I'm doing wrong.
