% % Find the maximal number of an array 10-elements. % a=input('Give an array of 10-numbers'); % % example of an input including the brackets: % [5 3 2 6 3 7 8 9 0 1] % max=a(1); n=length(a); % number of the elements in the array. for i=2:n if max