hi, I still trying to pricing an american asian option acording to the ZVF(1998) paper using FD, on MATLAB. The PDE is:To have an IMPLICIT DISCRETIZED SCHEME, I used a backward derivative with respect to time, central derivatives with respect to S, upwind derivative with respect to A, where Si=i*dS, i=0,...,N; Aj=j*dA, j=0,...,M; tk=k*dt, k=0,...,Tor My questions and doubts are:1. Is the discretization correct?2. I would like to rewrite the equacion in a trdiagonal matrix form, , where C-tridiagonal matrix and B-boundry condition (like for vanilla option...). If that is possible, what would be the coeficients ai, bi and ci in the diagonal for the matrix C? And are the Boundry condition?3. Since I have two variables, S and A, dimension of C is N*M? 3. this is the pseudo-code I thinking in use:imputs: S, Smax, Amax, N (steps in S) ,M (steps in A),T,sigma,rdefine variables: dt, dS, dA, C 1.Setup the matrix C ; determine the boundry condiction; 2. for k=T

0 %backward in time for j=0:M for k=0:N Solve the descretized equation end end end do interpolation if S is not in a point of the gridendWell, that's it!!Please can anybody give me tips, advice, correction... I'll be very glad for that. I'm dealing with this for so long that I just don't know what direction shoulg I take...Thks in advance!!