dd_spherepoint

One particle distanced from particles distributed on a sphere


Syntax

info = dd_spherepoint()
P = dd_spherepoint(r,param)
Parameters
  • r - Distance axis (N-array)
  • param - Model parameters
Returns
  • P - Distance distribution (N-array)
  • info - Model information (struct)

Model

../_images/model_scheme_dd_spherepoint.png

P(r) = \begin{cases} \frac{3r(R^2-(d-r)^2)}{4dR^3} \quad \text{for} \quad d-R \leq r < d+R \\ 0 \quad \text{for} \quad \text{otherwise}  \end{cases}

Variable Symbol Default Lower Upper Description
param(1) R 1.5 0.1 20 Sphere radius
param(2) d 3.5 0.1 20 Distance to point

Example using default parameters:

../_images/model_dd_spherepoint.png

Description

info = dd_spherepoint()

Returns an info structure containing the specifics of the model:

  • info.model - Full name of the parametric model.
  • info.nparam - Total number of adjustable parameters.
  • info.parameters - Structure array with information on individual parameters.

P = dd_spherepoint(r,param)

Computes the distance distribution model P from the axis r according to the parameters array param. The required parameters can also be found in the info structure.

References

[1] D.R. Kattnig, D. Hinderberger, Journal of Magnetic Resonance, 230 (2013), 50-63. DOI: 10.1016/j.jmr.2013.01.007