How can I make a gaussian function in matlab?
How can I make a gaussian function in matlab?
(OP)
Divide each input image into nr × nc blocks;
for (r = 1; r ≤ nr; r++)
for (c = 1; c ≤ nc; c++)
and this(See the attachment):
Thank you everyone please!!
for (r = 1; r ≤ nr; r++)
for (c = 1; c ≤ nc; c++)
and this(See the attachment):
Thank you everyone please!!
RE: How can I make a gaussian function in matlab?
Like this:
Grc(x, y) = exp{−[(x − xrc)^2+ (y − yrc)^2]/2σ^2}
RE: How can I make a gaussian function in matlab?
TTFN
FAQ731-376: Eng-Tips.com Forum Policies