function LocalMem=OperationMax(LocalMem,t)
	

    %MaxV=max(max(LocalMem));
    %LocalMem=ones(3,3)*MaxV;
	
    Max=-Inf;
	for a=1:3
		for b=1:3
			if LocalMem(a,b)>Max
				Max=LocalMem(a,b);
			end
	
		end
	end
	LocalMem=ones(3,3)*Max;

end
