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.

creatcont180model.m 283 B

123456789101112131415
  1. function modelmat=creatcontmodel
  2. th=linspace(-pi,pi,9);
  3. th=[th(1:8) th(1:8)];
  4. for a=1:length(th)
  5. for b=1:length(th)
  6. modelmat(a,b)=(abs(angdiff(th(a),th(b)))/pi); %minor difference since we are using euclidean distance
  7. end
  8. end
  9. % figure;imagesc(modelmat)
  10. end