MATLAB title

title() command puts the title on the plot, after reading this MATLAB title topic, you will know the theory and examples.


Syntax:

title(‘text’)

Example:

The statement to plot a sine wave in MATLAB is given as

x=0:0.1:2*pi; 
y=sin(x); 
plot(x,y)

Output:

Adding title label” sine wave” to the plot,

x=0:0.1:2*pi; 
y=sin(x); 
plot(x,y)
title('sine wave')

Published by

Electrical Workbook

We provide tutoring in Electrical Engineering.

Leave a Reply

Your email address will not be published. Required fields are marked *