How to create the ribbon plot in MATLAB?

 

Here, we are using ribbon() function for plotting ribbon 3D MATLAB plot.

Syntax:

The general syntax for writing code,

ribbon(x,y,z)
ribbon(x,y)
ribbon(z)

MATLAB Code:

To create a ribbon plot using peak function for mathematical function  ((x²)-(y²))

[x,y] = peaks(30);
z =[(x.^2)-(y.^2)];
ribbon(z);
title('\bf Ribbon Plot')

Output in MATLAB:

You can see each and every colorful shade ribbons.

4. Contour 3D Plot in MATLAB