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');
