MATLAB: How to plot graphically a 256 x 256 square matrix in matlab

graphical plotmatrix

I have a matrix of size 256 x 256 which store finger print values obtained in Byte Frequency cross-correlation algorithm.how can i obtain a graphical plot the same in matlab?

Best Answer

imagesc(TheMatrix)
perhaps?
Related Question