MATLAB: ” Warning: Rank deficient, rank = 0, tol = inf. > In trial (line 4)”

#rank deficient #fault_sensors

I was trying to plot a graph between number of faulty sensors and mean time between failures
for the below code I got this error." Warning: Rank deficient, rank = 0, tol = inf.
> In trial (line 4)"
clc;
close all;
x= 0:100:600;
y= (15.762*log(x)-45.378)/(1-2*(15.762*log(x)-45.378));
plot(x,y);

Best Answer

y= (15.762*log(x)-45.378)./(1-2*(15.762*log(x)-45.378));