Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

IncrementalFixedLagSmoother

This API walkthrough introduces the wrapped classes IncrementalFixedLagSmoother declared by IncrementalFixedLagSmoother.h and demonstrates their principal Python operations.

Open In Colab
import gtsam
import numpy as np
from gtsam.symbol_shorthand import L, X

Overview

The IncrementalFixedLagSmoother is a FixedLagSmoother that uses iSAM2 for incremental inference.

Python wrapper walkthrough

The following cell exercises the wrapped API directly.

smoother = gtsam.IncrementalFixedLagSmoother(2.0)
print(type(smoother).__name__)
print([name for name in dir(smoother) if not name.startswith('_')])