how can i implement the Gaussian potential value code?

1 visualización (últimos 30 días)
Pamela AL ALam
Pamela AL ALam el 11 de Feb. de 2020
Editada: Adam Danz el 13 de Feb. de 2020
If there exists an arbitrary point x={x1,x2,...,xn}, the equation to calculate the potential function of data field on xi is:
potentialOfPoints.PNG
my question is: how can i implement this equation in matlab?

Respuestas (1)

Adam Danz
Adam Danz el 12 de Feb. de 2020
Editada: Adam Danz el 13 de Feb. de 2020
x is a vector of length n.
I'm assuming sigma is std(x)
phi = sum(exp(-(vecnorm(x(:)-x(:).',2,1) / std(x)).^2));
phi(i) is the output for x(i).

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Productos


Versión

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by