MATLAB: Are the axis labels not shown in mini figure box

axis

clear all; clc;
A = xlsread('2V 100Hz start signal.xlsx',1, 'A9:A108');
B = xlsread('2V 100Hz start signal.xlsx',1, 'B9:B108');
title('Voltage as a Function of Time at 1V and 100Hz')
xlabel('Voltage (V)')
ylabel('Time (s)')
plot(A,B)

Best Answer

Put the plot call first:
plot(A,B)
title('Voltage as a Function of Time at 1V and 100Hz')
xlabel('Voltage (V)')
ylabel('Time (s)')
Related Question