very good work. but I have a question.
In your code, you gave out the odd series and even series as follows.
ixo = 2:2:NX;
ixe = 3:2:NX-1;
iyo = 2:2:NY;
iye = 3:2:NY-1;
if you choose 'o' as 'odd' , 'e' as 'even', the series 2:2:NX are even. so I think 'ixo = 2:2:NX' should be replaced by 'ixe = 2:2:NX'.
Is there a literal mistake, maybe the below code is right.
ixe = 2:2:NX;
ixo = 3:2:NX-1;
iye = 2:2:NY;
iyo = 3:2:NY-1;
very good work. but I have a question.
In your code, you gave out the odd series and even series as follows.
ixo = 2:2:NX;
ixe = 3:2:NX-1;
iyo = 2:2:NY;
iye = 3:2:NY-1;
if you choose 'o' as 'odd' , 'e' as 'even', the series 2:2:NX are even. so I think 'ixo = 2:2:NX' should be replaced by 'ixe = 2:2:NX'.
Is there a literal mistake, maybe the below code is right.
ixe = 2:2:NX;
ixo = 3:2:NX-1;
iye = 2:2:NY;
iyo = 3:2:NY-1;
Comment only