I have written a 1D heat conduction problem with H=100 and other variables and solved to obtain a maximum temperature. The maximum temperature was obtain (max(v)), after creating a spares matrix (A) and b matrix (Av=B). Now I want to find the maximum temperature for H=0:10:200. Below is my for loop code; please assist. H=0:10:200 mt=max(v);mt M=length(H); mt=zeros(1,M);mt for i=1:M; mt(i)=max(v); end