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