void TTCP::timesliceChangeTime(const int id, const QDateTime &new_time, const QDateTime &old_time) { QByteArray cmd; if (isReadyForUse()) { QString old_ts(old_time.toString(Qt::ISODate)); QString new_ts(new_time.toString(Qt::ISODate)); connection->write(QString("timemove\t%1\t%2\t%3\t%4\n").arg(user).arg(id).arg(new_ts).arg(old_ts).toAscii()); } }
void Trajectory::append(const Trajectory& trajectory) { assert(dim() == trajectory.dim()); assert(ts_[length() - 1] == trajectory.ts()[0]); if (ys_.row(length() - 1).isZero() || trajectory.ys().row(0).isZero()) assert(ys_.row(length() - 1).isZero() && trajectory.ys().row(0).isZero()); else assert(ys_.row(length() - 1).isApprox(trajectory.ys().row(0))); if (yds_.row(length() - 1).isZero() || trajectory.yds().row(0).isZero()) assert(yds_.row(length() - 1).isZero() && trajectory.yds().row(0).isZero()); else assert(yds_.row(length() - 1).isApprox(trajectory.yds().row(0))); if (ydds_.row(length() - 1).isZero() || trajectory.ydds().row(0).isZero()) assert(ydds_.row(length() - 1).isZero() && trajectory.ydds().row(0).isZero()); else assert(ydds_.row(length() - 1).isApprox(trajectory.ydds().row(0))); int new_size = length() + trajectory.length() - 1; VectorXd new_ts(new_size); new_ts << ts_, trajectory.ts().segment(1, trajectory.length() - 1); ts_ = new_ts; MatrixXd new_ys(new_size, dim()); new_ys << ys_, trajectory.ys().block(1, 0, trajectory.length() - 1, dim()); ys_ = new_ys; MatrixXd new_yds(new_size, dim()); new_yds << yds_, trajectory.yds().block(1, 0, trajectory.length() - 1, dim()); yds_ = new_yds; MatrixXd new_ydds(new_size, dim()); new_ydds << ydds_, trajectory.ydds().block(1, 0, trajectory.length() - 1, dim()); ydds_ = new_ydds; assert(dim_misc() == trajectory.dim_misc()); if (dim_misc()==0) { misc_.resize(new_size,0); } else { MatrixXd new_misc(new_size, dim_misc()); new_misc << misc_, trajectory.misc().block(1, 0, trajectory.length() - 1, dim_misc()); misc_ = new_misc; } }