checkTrajectories.Rd (785B)
1 % Generated by roxygen2: do not edit by hand 2 % Please edit documentation in R/checkTrajectories.R 3 \name{checkTrajectories} 4 \alias{checkTrajectories} 5 \title{Check that both arguments are trajectories with the same timecourse.} 6 \usage{ 7 checkTrajectories(trajectory1, trajectory2) 8 } 9 \arguments{ 10 \item{trajectory1}{An object to test.} 11 12 \item{trajectory2}{Another object to test.} 13 } 14 \value{ 15 TRUE if everything works. Raises an error otherwise. 16 } 17 \description{ 18 Check that both arguments are trajectories with the same timecourse. 19 } 20 \details{ 21 There are two options for passing this test. Either both objects can 22 be flighttrajectories, in which case the time stamps must match, or they 23 can both be flattrajectories, in which case they must have the same number 24 of samples and origin. 25 } 26