MATLAB: Graphical techique with matlab

graphhomeworkMATLAB

.
Need help with a MATLAB Graph

Best Answer

Run this code
x = linspace(0.1, 3);
y = log(x.^2) - 1;
ax = axes();
hold(ax);
plot(x, y)
yline(0);
Where the two lines intersect is the root.