.NeuralNetwork.Utilities.Dist

Information

This function calculate the euclideal distance between two matrix of real numbers. This function is used to calculate the activation function of a radial basis neuron: the first input is the WeightPoint(AxB) and the second is the InputPoint(BxC); the output is the Distance(AxC).

Release Notes:

Interface

function Dist
  input Real WeightPoint[:, :] "It's the matrix of the weight points";
  input Real InputPoint[:, :] "It's the matrix of the input points";
  output Real Distance[size(WeightPoint, 1), size(InputPoint, 2)] "It's the matrix of the distances";
end Dist;

Generated at 2024-04-18T18:15:58Z by OpenModelicaOpenModelica 1.22.3 using GenerateDoc.mos