Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

quickplotcompB.m 376 B

12345678910111213141516171819
  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,uno,'-o'); hold on;
  6. polarplot(theta,dos,'-o'); hold on;
  7. polarplot(theta,repmat(0.5,length(uno),1),'k--');hold on;
  8. rlim([0 1]);
  9. title(titulo); %legend('model','behav','Chance')
  10. end