You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You could write a simple .sh script to run the launch file iteratively. Something like this-
#!/bin/bash
# Loop to run the roslaunch command 10 times sequentially
for i in {1..10}
do
echo "Starting launch instance $i"
# Launch the ROS node and wait for it to complete
roslaunch hba hba.launch
done
if we launch it sever times ,we can make a better result, but how can we fix the code to make it run N times
The text was updated successfully, but these errors were encountered: