- Select matrix and copy
- In MATLAB, paste into variable ("a" in the example below):
First type
>> a= [
then paste (Ctrl^V)
then close bracket, and Enter \]
- Create the image
>> figure
>> imshow (a)
(or on the same line)
>> figure, imshow(a)
- Zoom in to see
Add Comment