How can I change the axis limit when I have 2 axes in my figure?

Technical Source
1 min readJan 29, 2021

--

I have a figure with 2 axes:

>> figure

>> yyaxis left

>> plot(1:10);

>> yyaxis right

>> plot(2:2:20);

How can I change the y-limit of my left axis to be 0 to 5, but the right axis to be 5 to 10?

ANSWER

Matlabsolutions.com provide latest MatLab Homework Help,MatLab Assignment Help for students, engineers and researchers in Multiple Branches like ECE, EEE, CSE, Mechanical, Civil with 100% output.Matlab Code for B.E, B.Tech,M.E,M.Tech, Ph.D. Scholars with 100% privacy guaranteed. Get MATLAB projects with source code for your learning and research.

You can use the “yyaxis” and “ylim” commands to set the y-limit for both axes:

>> figure
>> yyaxis left
>> plot(1:10);
>> yyaxis right
>> plot(2:2:20);
>>
>> f = gcf;
>> yyaxis left
>> ylim(f.Children, [0 5]);
>> yyaxis right
>> ylim(f.Children, [5 10]);

--

--

Technical Source
Technical Source

Written by Technical Source

Simple! That is me, a simple person. I am passionate about knowledge and reading. That’s why I have decided to write and share a bit of my life and thoughts to.

No responses yet