[.imu | R Documentation |
Enables the IMU object to be subsettable. That is, you can load all the data in and then select certain properties.
## S3 method for class 'imu'
x[i, j, drop = FALSE]
x |
A |
i |
A |
j |
A |
drop |
A |
When using the subset operator, note that all the Gyroscopes are placed at the front of object and, then, the Accelerometers are placed.
An imu
object class.
## Not run:
if(!require("imudata")){
install_imudata()
library("imudata")
}
data(imu6)
# Create an IMU Object that is full.
ex = imu(imu6, gyros = 1:3, accels = 4:6, axis = c('X', 'Y', 'Z', 'X', 'Y', 'Z'), freq = 100)
# Create an IMU object that has only gyros.
ex.gyro = ex[,1:3]
ex.gyro2 = ex[,c("Gyro. X","Gyro. Y","Gyro. Z")]
# Create an IMU object that has only accels.
ex.accel = ex[,4:6]
ex.accel2 = ex[,c("Accel. X","Accel. Y","Accel. Z")]
# Create an IMU object with both gyros and accels on axis X and Y
ex.b = ex[,c(1,2,4,5)]
ex.b2 = ex[,c("Gyro. X","Gyro. Y","Accel. X","Accel. Y")]
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.