plotParticlesUnweight.m
上传用户:zfsfly
上传日期:2018-05-24
资源大小:71k
文件大小:0k
源码类别:

matlab例程

开发平台:

Matlab

  1. function [ ] = plotParticlesUnweight( x, w )
  2. % Dibuja un conjunto de particulas de "poses" del robot
  3. %
  4. % function [  ] = plotParticles( x, w )
  5. %
  6. plot(x(:,1),x(:,2),'.');
  7. s = sprintf('mean=(%.02f,%.02f,%.1fdeg), std=(%.02f,%.02f,%.1fdeg)',mean(x(:,1)),mean(x(:,2)),mean(x(:,3))*180/pi,std(x(:,1)),std(x(:,2)),std(x(:,3))*180/pi);
  8. title(s);