Evaluating Stochastic Gradient with Random Grid

  • Context: Graduate 
  • Thread starter Thread starter Heimdall
  • Start date Start date
  • Tags Tags
    Gradient Stochastic
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
1 reply · 2K views
Heimdall
Messages
38
Reaction score
0
Hi,

I have a random grid, meaning that each cell consists of a random number. I need to evaluate the gradient.

I've tried to apply a basic Euler formula (u_(i+1) - u_(i-1))/2dx but since the values can fluctuate a lot, fluctuations are even stronger for the gradient...
I'm thinking about using a "smoother" method like a five point stencil, which could be better to avoid strong fluctuations... but then I can't find out how to deal with grid boundaries (for Euler method I use (u_(i+1)-u(i))/dx or (u_(i)-u_(i-1))/dx )

How would you do, is there a specific method for this kind of problem ?

Thanks a lot
 
Physics news on Phys.org
how to deal with grid boundaries
how about [tex]u_{-1}:=2u_{0}-u_{1}[/tex], etc? I mean (linear) extrapolation.