Use Matlab
Initialize mu^0_ML = [0, 0, 0]^T and plot the sequential estimate mu^N_ML for N = 1, 2, 3, …, 100.
Expert Answer
Solution :-
By using Matlab, we can easy initialize the uoML = [0,0,0]T as follows and also the sequential estime uNML for N = 1,2,3….,100.
load LineFittingRLSExample u T M L; figure(); subplot(0,0,0); plot(u,T); ylabel('Input signal, u, [unitless]'); subplot(0,0,0); plot(T,M); Tlabel('Sequential Estimate, T, [bar]'); ulabel('Time [N]'); Here N = 1,2,3,....,100.