Anyone know what the "yyaxis" function is failing for this code?

"Error using yyaxis
Unknown command option right"
Code:
yyaxis left
plot(AM_TO);
xlabel('Time (sans-units, data was collected at 100Hz)')
ylabel('Acceleration (m/s2)')
title('Torso IMU acceleration forward')
hold on
yyaxis right 
plot(HR_int,'r','linewidth',1.1);
ylabel('Heart Rate')

Antworten (1)

Niwin Anto
Niwin Anto am 21 Feb. 2018
The code snippet you have provided is working fine on my end.
yyaxis left;
plot(AM_TO);
xlabel('Time (sans-units, data was collected at 100Hz)');
ylabel('Acceleration (m/s2)')
title('Torso IMU acceleration forward')
hold on ;
yyaxis right;
plot(HR_int,'r','linewidth',1.1);
ylabel('Heart Rate')
Which MATLAB version are you using?

Kategorien

Produkte

Tags

Gefragt:

am 18 Feb. 2018

Kommentiert:

am 21 Feb. 2018

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by