diff --git a/activities/basic_cpp.html b/activities/basic_cpp.html index a3728ea1..bdbcdafe 100644 --- a/activities/basic_cpp.html +++ b/activities/basic_cpp.html @@ -1,7 +1,7 @@
- +std::stringstream
class will be helpful for testing operator<<
and operator>>
. It lets you use an std::string
as a stream instead of a file.launch/turtle_odom_test.launch.xml
that runs a joint_state_publisher
as well as the turtle_odom_test_node
test/turtle_odom_test.launch.xml
that runs a joint_state_publisher
as well as the turtle_odom_test_node
odometry
node was implemented in terms of DiffDrive
we will not test the the actual odometry calculations herelaunch/turtle_circle_test.launch.xml
that verifies the frequency that the circle
publishes cmd_vel
commands.test/turtle_circle_test.launch.xml
that verifies the frequency that the circle
publishes cmd_vel
commands.To set the standard for a given target @@ -654,9 +654,9 @@
These settings can also be done globally. @@ -697,17 +697,17 @@
target_compile_options(target -Wall -Wextra)
to add flags (in this case -Wall -Wextra
) to the buildadd_compile_options(-Wall -Wextra)
(-Wall -Wextra
in this case).This wheel has a roller angle of \(\gamma = -\frac{\pi}{4}\)
@@ -679,9 +679,9 @@This wheel has a roller angle of \(\gamma = \frac{\pi}{4}\)
@@ -717,9 +717,9 @@This wheel has a roller angle of \(\gamma = \frac{-\pi}{4}\)
@@ -754,9 +754,9 @@This wheel has a roller angle of \(\gamma = \frac{\pi}{4}\)
@@ -792,9 +792,9 @@Now that we have the relationship between the body twist and the velocity of the body in each wheel frame, we can now gather everything into a single equation: @@ -913,13 +913,13 @@
The kinematic equations are now
diff --git a/lectures/estimation_example.html b/lectures/estimation_example.html index cdf51448..91143357 100644 --- a/lectures/estimation_example.html +++ b/lectures/estimation_example.html @@ -1,7 +1,7 @@ - +@@ -196,8 +196,8 @@
#include"ros/ros.h" #include"sensor_msgs/JointState.h" @@ -229,9 +229,9 @@Example
Here is an example of this basic structure of a ROS node (pseudo-C++)
@@ -331,9 +331,9 @@Random Experiment: Flip two coins, count the number of Heads
@@ -539,7 +539,7 @@Flip two coins. \(\xi \in S\). @@ -711,7 +711,7 @@
If the origin of frame \(\{j\}\) is displaced from frame \(\{i\}\) by \(x \hat{x}_i + y \hat{y}_i\) and the angle between the frames is \(\theta\), then to convert a point \(p_j\) in frame \(j\) to frame \(i\) coordinates: @@ -284,7 +284,7 @@