I've plotted a dataset in SciDAVis and added the default Gaussian fit. SciDAVis used the following function:
$$ f(x) = y_0 + A \cdot \frac{\sqrt{\frac{2}{\pi}}}{w} \cdot \exp{\left(-2 \cdot \left(\frac{(x - x_c)}{w}\right)^2\right)} $$
Where $y_0$ is the offset on the $y$ axis, $A$ is the amplitude, $w$ the width and $x_c$ the position of the maximum on the $x$ axis.
All good, but what do they mean by "width"?
I thought it could be the FWHM, but that isn't the case as I found out by plotting the function in GeoGebra, searching the exact coordinates of the maximum, and then cutting the graph at $y = \frac{\text{max}_y}{2}$. This results in two coordinates of same $y$ coordinate but different $x$ coordinate and by calculating the distance of the two $x$ coordinates I get the FWHM.
The calculated FWHM is $2.59 - 1.41 = 1.18$ but $w$ is set to $1$.

It looks like the standard deviation, at least when $y_0$ and $A=1$, in which case this is the density of the normal distribution $\mathcal{N}(x_c, w^2)$. I think you may have a couple of typos in your formula — missing parentheses in the exponential, and
multiplying instead of dividing by $2$ in the exponent?It determines the “spread” or “dispersion” of the function, because it appears as a divisor of the independent variable, so it scales the graph horizontally.
It also affects the vertical size of the graph, but that’s usually there as part of the density to ensure an area of $1$ under the graph. Your function seems to be a little different, but essentially captures these properties.
The larger this parameter is, the wider the graph is.