Issue with ylim on property inspector Matlab 2018b

3 Ansichten (letzte 30 Tage)
Stetson Roof
Stetson Roof am 18 Nov. 2018
Kommentiert: Lily Yan am 10 Okt. 2019
Has anyone else had problems using the YLIM setting under the "Ruler" tab in the 2018b property inspector? Whenever I plot a figure and adjust the limits on the y-axis it'll only allow me to use the initial auto setting it picks or interger values. When I try to set the lower or upper limit to anything but an interger I get the error "Value must be a 1x2 vector of numeric type in which the second element is larger than the first and may be Inf" in a pop-up window.
  6 Kommentare
Image Analyst
Image Analyst am 18 Nov. 2018
I'm not able to reproduce. When I click the property tool button and go to the rulers section, and type in something new for the ylim values, it works fine.
numPoints = 30;
t = linspace(1, 1.5, numPoints);
period = 0.2;
y = 0.025 * sin(2 * pi * t / period);
plot(t, y, 'b*-', 'LineWidth', 2);
grid on;
ylim([-0.03, 0.03]);
Lily Yan
Lily Yan am 10 Okt. 2019
Hey have you tried to regenerate your prefdir?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Luis Andrade
Luis Andrade am 20 Mär. 2019
I was having the same issue. It seems to be a bug in this version of Matlab. I restarted Matlab and the issue went away.

Community Treasure Hunt

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

Start Hunting!

Translated by