print.sensor | R Documentation |
sensor
object parameters (name, frequency and error model)Print method for a sensor
object
## S3 method for class 'sensor'
print(x, ...)
x |
A |
... |
Further arguments passed to or from other methods. |
Print the sensor
object name and specifications in the console.
Davide Cucci, Lionel Voirol, Mehran Khaghani, Stéphane Guerrier
# IMU:
imu.freq <- 250
acc.mdl <- WN(sigma2 = 1.535466e-04) + RW(gamma2 = 1.619511e-10)
gyr.mdl <- WN(sigma2 = 1.711080e-03) + RW(gamma2 = 1.532765e-13)
imu.mdl <- make_sensor(
name = "imu",
frequency = imu.freq,
error_model1 = acc.mdl,
error_model2 = gyr.mdl
)
print(imu.mdl)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.