Skip to content
Prev 78670 / 398502 Next

possible bug in image() ??

Gareth Davies a Ã©crit :
Hello,
here's a way to have an image according the usual view.

timage = function(M)
{
M1 = M;
for (i in 1:nrow(M)) M1[i,] = M[nrow(M)-i+1,];
image(t(M1));
}

hih