MATLAB xlabel

The xlabel command put the label on the x-axis of the plot, after reading this MATLAB xlabel topic, you will know the theory, and examples, and you will understand how to use it in MATLAB.


Syntax:

xlabel(‘text’)

Example:

The statement to plot sine wave in MATLAB is given as

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

Output:

Adding x-axis label “time”, to the plot,

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

Output:

 

Published by

Electrical Workbook

We provide tutoring in Electrical Engineering.

Leave a Reply

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