PLOTTING MULTIPLE Y AXES
Good afternoon,
How could I create a graph with multiple y-axes: Millitm, PIT, TIT, PD, FIT
T2022_1 = readtable(‘data.csv’, ‘VariableNamingRule’,’preserve’);
MyDateTime = T2022_1.Date + T2022_1.Time;
MyDateTime.Format = ‘yyyy-MM-dd HH:mm:ss’;
T2022_2 = [T2022_1(:,1) table(MyDateTime) T2022_1(:,[3:end])];
figure(1)
plot(T2022_2.MyDateTime, T2022_2.(‘PIT’), ‘-k’, ‘LineWidth’,1, ‘DisplayName’, ‘Pressure Separador’)
grid on
xlabel(‘Date & Time’)
ylabel(‘Pressure – Psig’)
lgd = legend;
lgd.NumColumns = 1;
for the help, thank you in advanceGood afternoon,
How could I create a graph with multiple y-axes: Millitm, PIT, TIT, PD, FIT
T2022_1 = readtable(‘data.csv’, ‘VariableNamingRule’,’preserve’);
MyDateTime = T2022_1.Date + T2022_1.Time;
MyDateTime.Format = ‘yyyy-MM-dd HH:mm:ss’;
T2022_2 = [T2022_1(:,1) table(MyDateTime) T2022_1(:,[3:end])];
figure(1)
plot(T2022_2.MyDateTime, T2022_2.(‘PIT’), ‘-k’, ‘LineWidth’,1, ‘DisplayName’, ‘Pressure Separador’)
grid on
xlabel(‘Date & Time’)
ylabel(‘Pressure – Psig’)
lgd = legend;
lgd.NumColumns = 1;
for the help, thank you in advance Good afternoon,
How could I create a graph with multiple y-axes: Millitm, PIT, TIT, PD, FIT
T2022_1 = readtable(‘data.csv’, ‘VariableNamingRule’,’preserve’);
MyDateTime = T2022_1.Date + T2022_1.Time;
MyDateTime.Format = ‘yyyy-MM-dd HH:mm:ss’;
T2022_2 = [T2022_1(:,1) table(MyDateTime) T2022_1(:,[3:end])];
figure(1)
plot(T2022_2.MyDateTime, T2022_2.(‘PIT’), ‘-k’, ‘LineWidth’,1, ‘DisplayName’, ‘Pressure Separador’)
grid on
xlabel(‘Date & Time’)
ylabel(‘Pressure – Psig’)
lgd = legend;
lgd.NumColumns = 1;
for the help, thank you in advance multiple y axes MATLAB Answers — New Questions