The Gridder3PolyOrder option sets local polynomial order in the Local Polynomial gridding method. The OptionValue is an integer, representing the polynomial order. The option is only available if Gridder3Method=2.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Gridder”)
object.Option(“Gridder3PolyOrder”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to set local polynomial order for the Local Polynomial gridding method.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Gridder")
CommandApi.Option ("Gridder3PolyOrder", "3")
CommandApi.Do()
Used by: Gridder
See Also