12345678910 |
- function quickplot(theta,uno,dos,titulo);
- theta=[theta theta(1)];
- uno=[uno uno(1)];
- dos=[dos dos(1)];
-
- polarplot(theta,uno,'-o'); hold on;
- polarplot(theta,dos,'-o');
- polarplot(theta,repmat(0.5,length(uno),1),'k--');
- rlim([0 1]); title(titulo); legend('Circle','Square','Chance')
- end
|