image thumbnail
from MATLAB Plot Gallery - Display Image (1) by Plot Gallery
Create an image display

Display_Image_1

This is an example of how to display a simple image in MATLAB®.

Read about the image function in the MATLAB® documentation.

Go to MATLAB Plot Gallery

% Load the data for the North Atlantic image
load NAimage lng lat naimg;

% Create the image display using the image command
figure;
image(lng, lat, naimg);

% Turn the axes off
axis off;

% Add title
title('North Atlantic');

Contact us