For the numerical method of second order PDE, we use semi-discrete(finite difference in $x$, continuous in $t$) method to translate PDE to a ODE system $$\dfrac{\textrm{d} U}{\textrm{d} t} = AU,$$ $$U(0) = U_0$$ here $$U(t) = (u_1(t),\dots,u_{J-1}(t))$$ is the vector of discrete numerical solution. $A$ is a constant coefficient matrix
My question is this ODE system can already be solved explicitly, why do we need the full-discrete method again i.e difference on time $t$ $$\dfrac{U^{n+1} - U^n}{k} = A U^{n+1},\quad 0\leq n\leq N-1$$ $$U^0 = U_0.$$ Here is $k = \Delta t.$