[Content_Types].xml
_rels/.rels
matlab/document.xml
matlab/output.xml
metadata/coreProperties.xml
metadata/mwcoreProperties.xml
metadata/mwcorePropertiesExtension.xml
metadata/mwcorePropertiesReleaseInfo.xml
MATLAB Functions In this livescript, you will learn how MATLAB functions work To write a function In workshop 2 we tended to work with scripts, such as with \texttt{linear\_equation\_solver} %%%%%%%%%%%%%%%%%%%%%%%%%% % linear_equation_solver % %%%%%%%%%%%%%%%%%%%%%%%%%% x = 5; % Initial Guess tol = 10e-6; % Specified Tolerance i = 1; max_iter = 100; % Maximum number of iterations before the loops stops while abs(x-2)>tol && i