FlexPro
HistoryBase
Ingénierie
Formation
Téléchargements
Support FlexPro
Connaissance
Communauté
À propos de nous
Références
Emplois
Contact général
Liste des revendeurs
Support FlexPro
FR
DE
EN
Porte-plaquette
Produits et solutions
Support et téléchargements
Entreprise
Magazine
Contact
Langue
MyWeisang

Paramètres du compte.

Topic

surface interpolations

Page d'accueil ' Communauté ' Généralités ' interpolations de surface

Voir les messages de 3 - 1 à 3 (sur un total de 3)
  • Auteur
    Messages
  • #33735
    matt neil
    Participant

    Does anyone know if there is a way to do a surface interpolation with an x, y, and z dataset other than the “Natural Neighbor” interpolation? I am wanting to try a polynomial fit with the end result of getting the coefficients for the equation of the resulting surface. Thank you.

    #33737
    matt neil
    Participant

    Does anyone know if there is a way to do a surface interpolation with an x, y, and z dataset other than the “Natural Neighbor” interpolation? I am wanting to try a polynomial fit with the end result of getting the coefficients for the equation of the resulting surface. Thank you.

    #33736
    Bernhard Kantz
    Participant

    If you want to calculate the coefficients of a polynomial with 2 dependent variables, you can use the [b]NonLinCurveFit[/b]-function.

    Example:
    The dataset ‘Data’ is a space curve with a x-, y- and z-component.
    Model function: y = p0 + p1 * x + p2 * z + p3 * x^2 + p4 * z^2

    FPScript code:
    [code]
    NonLinCurveFit(“p[0] + p[1] * d.[0] + p[2] * d.[1] + p[3] * d.[0]^2 + p[4] * d.[1]^2”, Data.y, {1,1,0,0,0}, , , , , , NLCF_OUTPUT_SOLUTION , , ,[[Data.Y, Data.Z]])
    [/code]

    support@weisang.com[quote][/quote]

Voir les messages de 3 - 1 à 3 (sur un total de 3)
  • Vous devez être connecté pour répondre à ce sujet.