%Lab 26 Solutions %lab26fzero.m %Patrick D. Schmid clear; fprintf('Find the root of:\n'); fprintf(' 2x^3 + sin(x) - 4.0\n'); xinit = 0.5; root = fzero('lab26fzerofunc', xinit); fprintf(' The root of this is %10.8f\n\n', root);