quickplot_onlybias.m 506 B

123456789101112131415
  1. function quickplot(theta,uno,dos,titulo);
  2. theta=[theta theta(1)];
  3. uno=[uno uno(1)];
  4. dos=[dos dos(1)];
  5. polarplot(theta,repmat(0.5,length(uno),1),'r-','LineWidth',2);hold on;
  6. polarplot(theta,uno,'k--o','MarkerSize', 8, 'MarkerFaceColor', 'k','LineWidth',1.25); hold on;
  7. polarplot(theta,dos,'k--o','MarkerSize', 8,'MarkerFaceColor', 'k','LineWidth',1.25);
  8. r=gca;
  9. r.FontSize=13;
  10. rlim([0 1]); %title(titulo); legend('Circle','Square','Chance')
  11. end